IPC: Move ipc sources to esp_system

IPC shall be put back into esp_system as it is an 'OS additions'.
This commit is contained in:
Omar Chebib
2021-09-17 11:14:32 +08:00
parent 6ef6c2a2c7
commit 9d5923a13e
35 changed files with 119 additions and 93 deletions

View File

@@ -12,6 +12,13 @@ set(srcs "highint_hdl.S"
"../../arch/xtensa/debug_stubs.c"
"../../arch/xtensa/trax.c"
)
if(CONFIG_ESP_IPC_ISR_ENABLE)
list(APPEND srcs "../../arch/xtensa/esp_ipc_isr.c"
"../../arch/xtensa/esp_ipc_isr_handler.S"
"../../arch/xtensa/esp_ipc_isr_routines.S")
endif()
add_prefix(srcs "${CMAKE_CURRENT_LIST_DIR}/" ${srcs})
target_sources(${COMPONENT_LIB} PRIVATE ${srcs})