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

@@ -7,3 +7,4 @@ ESP-IDF 5.0 Migration Guides
Peripherals <peripherals>
Build System <build-system>
System <system>

View File

@@ -0,0 +1,10 @@
Migrate System to ESP-IDF 5.0
==================================
Inter-Processor Call
-----------------------
IPC (Inter-Processor Call) component has been moved to ``esp_system``.
Thus, any project presenting a ``CMakeLists.txt`` file with the parameters ``PRIV_REQUIRES esp_ipc`` or ``REQUIRES esp_ipc``, should be modified to simply remove these options as ``esp_system`` component is included by default.