From c6ff53de4ada08dff73b7ffaed27ac50e19efb75 Mon Sep 17 00:00:00 2001 From: libaoping Date: Mon, 11 Jul 2022 17:41:18 +0800 Subject: [PATCH] fix:Clear ipc_lite dependencies Signed-off-by: libaoping --- en/device-dev/subsystems/subsys-build-mini-lite.md | 4 +--- en/readme/liteipc_driver.md | 4 ++-- zh-cn/device-dev/subsystems/subsys-build-mini-lite.md | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/en/device-dev/subsystems/subsys-build-mini-lite.md b/en/device-dev/subsystems/subsys-build-mini-lite.md index afee55ad0c..d8b4c94681 100644 --- a/en/device-dev/subsystems/subsys-build-mini-lite.md +++ b/en/device-dev/subsystems/subsys-build-mini-lite.md @@ -110,9 +110,7 @@ The following example shows how to define attributes of the sensor component of "features": [], # Configurable features of the component "deps": { "components": [ # Other components on which the component depends - "samgr_lite", - "ipc_lite" - + "samgr_lite" ], "third_party": [ # Open-source third-party software on which the component depends "bounds_checking_function" diff --git a/en/readme/liteipc_driver.md b/en/readme/liteipc_driver.md index 20c09914d2..8889fc2479 100644 --- a/en/readme/liteipc_driver.md +++ b/en/readme/liteipc_driver.md @@ -5,9 +5,9 @@ LiteIPC is an OpenHarmony extension to the LiteOS(a) kernel which provides a mea ## API *Application-layer Interface* -//foundation/communication/ipc_lite/frameworks/liteipc/include/liteipc.h (mini and small systems) +//foundation/communication/ipc/interfaces/innerkits/c/ipc/include/ipc_skeleton.h (mini and small systems) +//foundation/communication/ipc/interfaces/innerkits/c/ipc/include/serializer.h (mini and small systems) //foundation/communication/ipc/ipc/native/c/ipc/src/liteos_a/include/lite_ipc.h (standard systems) -//foundation/communication/ipc_lite/interfaces/kits/liteipc_adapter.h *Implementation* //kernel/liteos_a/kernel/extended/liteipc/hm_liteipc.h diff --git a/zh-cn/device-dev/subsystems/subsys-build-mini-lite.md b/zh-cn/device-dev/subsystems/subsys-build-mini-lite.md index 7b6727efbc..0c18f32304 100644 --- a/zh-cn/device-dev/subsystems/subsys-build-mini-lite.md +++ b/zh-cn/device-dev/subsystems/subsys-build-mini-lite.md @@ -112,8 +112,7 @@ component "ram": "~200KB", # 部件RAM估值 "deps": { "components": [ # 部件依赖的其他部件 - "samgr_lite", - "ipc_lite" + "samgr_lite" ], "third_party": [ # 部件依赖的三方开源软件 "bounds_checking_function" -- GitLab