esp_ipc: Move to new component

This commit moves esp_ipc into a separate component.
This commit is contained in:
Darian Leung
2020-04-27 14:29:54 +08:00
parent 514596cb81
commit 11d96b39d0
40 changed files with 50 additions and 43 deletions

View File

@@ -6,6 +6,6 @@ idf_component_register(SRCS "ccomp_timer.c"
INCLUDE_DIRS include
PRIV_INCLUDE_DIRS private_include
REQUIRES spi_flash idf_test unity
PRIV_REQUIRES perfmon)
PRIV_REQUIRES perfmon esp_ipc)

View File

@@ -21,7 +21,6 @@
#include "freertos/semphr.h"
#include "esp_log.h"
#include "esp_ipc.h"
#include "esp_intr_alloc.h"
#if CONFIG_IDF_TARGET_ESP32

View File

@@ -26,7 +26,6 @@
#include "xtensa/core-macros.h"
#include "xtensa/xt_perf_consts.h"
#include "xtensa-debug-module.h"
#include "esp_ipc.h"
#if CONFIG_IDF_TARGET_ESP32
#include "esp32/clk.h"

View File

@@ -1,3 +1,3 @@
idf_component_register(SRC_DIRS "."
PRIV_INCLUDE_DIRS "."
PRIV_REQUIRES unity test_utils perfmon)
PRIV_REQUIRES unity test_utils perfmon esp_ipc)

View File

@@ -9,7 +9,9 @@
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#ifndef CONFIG_FREERTOS_UNICORE
#include "esp_ipc.h"
#endif
#include "unity.h"

View File

@@ -8,7 +8,6 @@
#include "eri.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_ipc.h"
#if CONFIG_IDF_TARGET_ESP32