From 52795c4b50d4ead4ead4a02c1e2562ed760c726d Mon Sep 17 00:00:00 2001 From: WanqQixiang Date: Mon, 6 Feb 2023 20:41:52 +0800 Subject: [PATCH] example: Move the external_platform out of the ble_mesh example --- examples/blemesh_bridge/main/CMakeLists.txt | 1 + examples/blemesh_bridge/platform/ESP32_custom/BLEManagerImpl.h | 1 - .../blemesh_bridge/platform/ESP32_custom/BlePlatformConfig.h | 1 - .../platform/ESP32_custom/CHIPDevicePlatformConfig.h | 1 - .../platform/ESP32_custom/CHIPDevicePlatformEvent.h | 1 - .../blemesh_bridge/platform/ESP32_custom/CHIPPlatformConfig.h | 1 - .../platform/ESP32_custom/ConfigurationManagerImpl.cpp | 1 - .../platform/ESP32_custom/ConfigurationManagerImpl.h | 1 - .../platform/ESP32_custom/ConnectivityManagerImpl.cpp | 1 - .../platform/ESP32_custom/ConnectivityManagerImpl.h | 1 - .../platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp | 1 - .../platform/ESP32_custom/DiagnosticDataProviderImpl.cpp | 1 - .../platform/ESP32_custom/DiagnosticDataProviderImpl.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.cpp | 1 - examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.cpp | 1 - examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.h | 1 - .../platform/ESP32_custom/ESP32DeviceInfoProvider.cpp | 1 - .../platform/ESP32_custom/ESP32DeviceInfoProvider.h | 1 - .../platform/ESP32_custom/ESP32FactoryDataProvider.cpp | 1 - .../platform/ESP32_custom/ESP32FactoryDataProvider.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.cpp | 1 - examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.h | 1 - .../blemesh_bridge/platform/ESP32_custom/InetPlatformConfig.h | 1 - .../platform/ESP32_custom/KeyValueStoreManagerImpl.cpp | 1 - .../platform/ESP32_custom/KeyValueStoreManagerImpl.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/Logging.cpp | 1 - examples/blemesh_bridge/platform/ESP32_custom/LwIPCoreLock.cpp | 1 - .../platform/ESP32_custom/NetworkCommissioningDriver.cpp | 1 - .../platform/ESP32_custom/NetworkCommissioningDriver.h | 1 - .../platform/ESP32_custom/OTAImageProcessorImpl.cpp | 1 - .../platform/ESP32_custom/OTAImageProcessorImpl.h | 1 - .../blemesh_bridge/platform/ESP32_custom/OpenthreadConfig.h | 1 - .../blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.c | 1 - .../blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.h | 1 - .../platform/ESP32_custom/PlatformManagerImpl.cpp | 1 - .../blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/ScopedNvsHandle.h | 1 - .../blemesh_bridge/platform/ESP32_custom/SystemPlatformConfig.h | 1 - .../blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.cpp | 1 - .../blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.h | 1 - .../platform/ESP32_custom/ThreadStackManagerImpl.cpp | 1 - .../platform/ESP32_custom/ThreadStackManagerImpl.h | 1 - .../blemesh_bridge/platform/ESP32_custom/WarmPlatformConfig.h | 1 - examples/blemesh_bridge/platform/ESP32_custom/bluedroid | 1 - examples/blemesh_bridge/sdkconfig.defaults | 2 +- .../blemesh_platform/platform/ESP32_custom/BLEManagerImpl.h | 1 + .../blemesh_platform}/platform/ESP32_custom/BUILD.gn | 0 .../blemesh_platform/platform/ESP32_custom/BlePlatformConfig.h | 1 + .../platform/ESP32_custom/CHIPDevicePlatformConfig.h | 1 + .../platform/ESP32_custom/CHIPDevicePlatformEvent.h | 1 + .../blemesh_platform/platform/ESP32_custom/CHIPPlatformConfig.h | 1 + .../platform/ESP32_custom/ConfigurationManagerImpl.cpp | 1 + .../platform/ESP32_custom/ConfigurationManagerImpl.h | 1 + .../platform/ESP32_custom/ConnectivityManagerImpl.cpp | 1 + .../platform/ESP32_custom/ConnectivityManagerImpl.h | 1 + .../platform/ESP32_custom/ConnectivityManagerImpl_Ethernet.cpp | 1 + .../platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp | 1 + .../platform/ESP32_custom/DiagnosticDataProviderImpl.cpp | 1 + .../platform/ESP32_custom/DiagnosticDataProviderImpl.h | 1 + .../common/blemesh_platform/platform/ESP32_custom/DnssdImpl.cpp | 1 + .../common/blemesh_platform/platform/ESP32_custom/DnssdImpl.h | 1 + .../blemesh_platform/platform/ESP32_custom/ESP32Config.cpp | 1 + .../common/blemesh_platform/platform/ESP32_custom/ESP32Config.h | 1 + .../platform/ESP32_custom/ESP32DeviceInfoProvider.cpp | 1 + .../platform/ESP32_custom/ESP32DeviceInfoProvider.h | 1 + .../platform/ESP32_custom/ESP32FactoryDataProvider.cpp | 1 + .../platform/ESP32_custom/ESP32FactoryDataProvider.h | 1 + .../blemesh_platform/platform/ESP32_custom/ESP32Utils.cpp | 1 + .../common/blemesh_platform/platform/ESP32_custom/ESP32Utils.h | 1 + .../blemesh_platform/platform/ESP32_custom/InetPlatformConfig.h | 1 + .../platform/ESP32_custom/KeyValueStoreManagerImpl.cpp | 1 + .../platform/ESP32_custom/KeyValueStoreManagerImpl.h | 1 + .../common/blemesh_platform/platform/ESP32_custom/Logging.cpp | 1 + .../blemesh_platform/platform/ESP32_custom/LwIPCoreLock.cpp | 1 + .../platform/ESP32_custom/NetworkCommissioningDriver.cpp | 1 + .../platform/ESP32_custom/NetworkCommissioningDriver.h | 1 + .../platform/ESP32_custom/OTAImageProcessorImpl.cpp | 1 + .../platform/ESP32_custom/OTAImageProcessorImpl.h | 1 + .../blemesh_platform/platform/ESP32_custom/OpenthreadConfig.h | 1 + .../blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.c | 1 + .../blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.h | 1 + .../platform/ESP32_custom/PlatformManagerImpl.cpp | 1 + .../platform/ESP32_custom/PlatformManagerImpl.h | 1 + .../blemesh_platform/platform/ESP32_custom/ScopedNvsHandle.h | 1 + .../platform/ESP32_custom/SystemPlatformConfig.h | 1 + .../platform/ESP32_custom/SystemTimeSupport.cpp | 1 + .../blemesh_platform/platform/ESP32_custom/SystemTimeSupport.h | 1 + .../platform/ESP32_custom/ThreadStackManagerImpl.cpp | 1 + .../platform/ESP32_custom/ThreadStackManagerImpl.h | 1 + .../blemesh_platform/platform/ESP32_custom/WarmPlatformConfig.h | 1 + .../common/blemesh_platform/platform/ESP32_custom/bluedroid | 1 + .../platform/ESP32_custom/nimble/BLEManagerImpl.cpp | 0 93 files changed, 47 insertions(+), 45 deletions(-) delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/BLEManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/BlePlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformEvent.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/CHIPPlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/InetPlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/Logging.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/LwIPCoreLock.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/OpenthreadConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.c delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ScopedNvsHandle.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/SystemPlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.cpp delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/WarmPlatformConfig.h delete mode 120000 examples/blemesh_bridge/platform/ESP32_custom/bluedroid create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/BLEManagerImpl.h rename examples/{blemesh_bridge => common/blemesh_platform}/platform/ESP32_custom/BUILD.gn (100%) create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/BlePlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformEvent.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/CHIPPlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_Ethernet.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/InetPlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/Logging.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/LwIPCoreLock.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.c create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ScopedNvsHandle.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/SystemPlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.cpp create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/WarmPlatformConfig.h create mode 120000 examples/common/blemesh_platform/platform/ESP32_custom/bluedroid rename examples/{blemesh_bridge => common/blemesh_platform}/platform/ESP32_custom/nimble/BLEManagerImpl.cpp (100%) diff --git a/examples/blemesh_bridge/main/CMakeLists.txt b/examples/blemesh_bridge/main/CMakeLists.txt index c68ff1cc4..276df8b44 100644 --- a/examples/blemesh_bridge/main/CMakeLists.txt +++ b/examples/blemesh_bridge/main/CMakeLists.txt @@ -2,6 +2,7 @@ set(PRIV_REQUIRES_LIST device esp_matter route_hook app_bridge) idf_component_register(SRC_DIRS "." PRIV_INCLUDE_DIRS "." + "${ESP_MATTER_PATH}/examples/common/blemesh_platform" PRIV_REQUIRES ${PRIV_REQUIRES_LIST}) set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 14) diff --git a/examples/blemesh_bridge/platform/ESP32_custom/BLEManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/BLEManagerImpl.h deleted file mode 120000 index 507e4ff7d..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/BLEManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/BLEManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/BlePlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/BlePlatformConfig.h deleted file mode 120000 index 77d64bb5d..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/BlePlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/BlePlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformConfig.h deleted file mode 120000 index 50cfc04fe..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPDevicePlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformEvent.h b/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformEvent.h deleted file mode 120000 index a090fee8d..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/CHIPDevicePlatformEvent.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPDevicePlatformEvent.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/CHIPPlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/CHIPPlatformConfig.h deleted file mode 120000 index 1a91e937d..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/CHIPPlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPPlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.cpp deleted file mode 120000 index f5e56ad62..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConfigurationManagerImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.h deleted file mode 120000 index 3946c9030..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ConfigurationManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConfigurationManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.cpp deleted file mode 120000 index 19127f455..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.h deleted file mode 120000 index e05cdb2ce..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp deleted file mode 120000 index bec52cc5a..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl_WiFi.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp deleted file mode 120000 index d862b94f3..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DiagnosticDataProviderImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.h deleted file mode 120000 index f511e3f96..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/DiagnosticDataProviderImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DiagnosticDataProviderImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.cpp deleted file mode 120000 index 7c3d1750e..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DnssdImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.h deleted file mode 120000 index def841260..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/DnssdImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DnssdImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.cpp deleted file mode 120000 index 35426336b..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Config.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.h b/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.h deleted file mode 120000 index 6da6614ca..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Config.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Config.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp deleted file mode 120000 index 02a4a292b..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32DeviceInfoProvider.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.h b/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.h deleted file mode 120000 index 087987b00..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32DeviceInfoProvider.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32DeviceInfoProvider.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.cpp deleted file mode 120000 index 7baa4c683..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32FactoryDataProvider.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.h b/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.h deleted file mode 120000 index 1b201888a..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32FactoryDataProvider.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32FactoryDataProvider.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.cpp deleted file mode 120000 index 0b450b25d..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Utils.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.h b/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.h deleted file mode 120000 index 6c2662622..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ESP32Utils.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Utils.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/InetPlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/InetPlatformConfig.h deleted file mode 120000 index df165cf5f..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/InetPlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/InetPlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp deleted file mode 120000 index 4719ba527..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/KeyValueStoreManagerImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.h deleted file mode 120000 index 7a4fe11b4..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/KeyValueStoreManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/KeyValueStoreManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/Logging.cpp b/examples/blemesh_bridge/platform/ESP32_custom/Logging.cpp deleted file mode 120000 index a26787a10..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/Logging.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/Logging.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/LwIPCoreLock.cpp b/examples/blemesh_bridge/platform/ESP32_custom/LwIPCoreLock.cpp deleted file mode 120000 index a13ea0401..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/LwIPCoreLock.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/LwIPCoreLock.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.cpp b/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.cpp deleted file mode 120000 index 8274bdc1f..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/NetworkCommissioningDriver.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.h b/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.h deleted file mode 120000 index f155452ce..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/NetworkCommissioningDriver.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/NetworkCommissioningDriver.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.cpp deleted file mode 120000 index e3a2f4fe8..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OTAImageProcessorImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.h deleted file mode 120000 index 9ca0a59ce..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/OTAImageProcessorImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OTAImageProcessorImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadConfig.h deleted file mode 120000 index 233273862..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.c b/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.c deleted file mode 120000 index 340af8979..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.c +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadLauncher.c \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.h b/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.h deleted file mode 120000 index f8ff66bec..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/OpenthreadLauncher.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadLauncher.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.cpp deleted file mode 120000 index d1aa66386..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/PlatformManagerImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.h deleted file mode 120000 index f1cc30be5..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/PlatformManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/PlatformManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ScopedNvsHandle.h b/examples/blemesh_bridge/platform/ESP32_custom/ScopedNvsHandle.h deleted file mode 120000 index a6c58071b..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ScopedNvsHandle.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ScopedNvsHandle.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/SystemPlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/SystemPlatformConfig.h deleted file mode 120000 index d2a9e2733..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/SystemPlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemPlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.cpp b/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.cpp deleted file mode 120000 index 7a55addaf..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemTimeSupport.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.h b/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.h deleted file mode 120000 index 2a8ab803f..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/SystemTimeSupport.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemTimeSupport.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.cpp b/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.cpp deleted file mode 120000 index 5c7137c11..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.cpp +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ThreadStackManagerImpl.cpp \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.h b/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.h deleted file mode 120000 index 6f2dbc44b..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/ThreadStackManagerImpl.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ThreadStackManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/WarmPlatformConfig.h b/examples/blemesh_bridge/platform/ESP32_custom/WarmPlatformConfig.h deleted file mode 120000 index 3e4449f3c..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/WarmPlatformConfig.h +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/WarmPlatformConfig.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/bluedroid b/examples/blemesh_bridge/platform/ESP32_custom/bluedroid deleted file mode 120000 index fb50c353e..000000000 --- a/examples/blemesh_bridge/platform/ESP32_custom/bluedroid +++ /dev/null @@ -1 +0,0 @@ -../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/bluedroid \ No newline at end of file diff --git a/examples/blemesh_bridge/sdkconfig.defaults b/examples/blemesh_bridge/sdkconfig.defaults index 42ed1f255..876ee8ae1 100644 --- a/examples/blemesh_bridge/sdkconfig.defaults +++ b/examples/blemesh_bridge/sdkconfig.defaults @@ -38,7 +38,7 @@ CONFIG_USE_BLE_ONLY_FOR_COMMISSIONING=n # Enable External Platform CONFIG_CHIP_ENABLE_EXTERNAL_PLATFORM=y -CONFIG_CHIP_EXTERNAL_PLATFORM_DIR="../../../../examples/blemesh_bridge/platform/ESP32_custom" +CONFIG_CHIP_EXTERNAL_PLATFORM_DIR="../../../../examples/common/blemesh_platform/platform/ESP32_custom" # Enable lwIP route hooks CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/BLEManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/BLEManagerImpl.h new file mode 120000 index 000000000..de659432a --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/BLEManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/BLEManagerImpl.h \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/BUILD.gn b/examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn similarity index 100% rename from examples/blemesh_bridge/platform/ESP32_custom/BUILD.gn rename to examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/BlePlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/BlePlatformConfig.h new file mode 120000 index 000000000..7f1b6eb48 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/BlePlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/BlePlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformConfig.h new file mode 120000 index 000000000..40c374398 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPDevicePlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformEvent.h b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformEvent.h new file mode 120000 index 000000000..a4f270c54 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPDevicePlatformEvent.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPDevicePlatformEvent.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/CHIPPlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPPlatformConfig.h new file mode 120000 index 000000000..745831359 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/CHIPPlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/CHIPPlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.cpp new file mode 120000 index 000000000..13cd8589a --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConfigurationManagerImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.h new file mode 120000 index 000000000..b8823431f --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConfigurationManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConfigurationManagerImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.cpp new file mode 120000 index 000000000..a9f51630b --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.h new file mode 120000 index 000000000..29f46b4ea --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_Ethernet.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_Ethernet.cpp new file mode 120000 index 000000000..87e131daf --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_Ethernet.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl_Ethernet.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp new file mode 120000 index 000000000..cc3046e62 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ConnectivityManagerImpl_WiFi.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ConnectivityManagerImpl_WiFi.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp new file mode 120000 index 000000000..592dceacc --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DiagnosticDataProviderImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.h new file mode 120000 index 000000000..de7bf7c07 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/DiagnosticDataProviderImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DiagnosticDataProviderImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.cpp new file mode 120000 index 000000000..71690e7c4 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DnssdImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.h new file mode 120000 index 000000000..15c4179ef --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/DnssdImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/DnssdImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.cpp new file mode 120000 index 000000000..8d27b30f7 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Config.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.h b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.h new file mode 120000 index 000000000..7f2fe3f5d --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Config.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Config.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp new file mode 120000 index 000000000..4dffdba7e --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32DeviceInfoProvider.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.h b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.h new file mode 120000 index 000000000..dec2f5ec8 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32DeviceInfoProvider.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32DeviceInfoProvider.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.cpp new file mode 120000 index 000000000..a1aaf653e --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32FactoryDataProvider.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.h b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.h new file mode 120000 index 000000000..180c6f62a --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32FactoryDataProvider.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32FactoryDataProvider.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.cpp new file mode 120000 index 000000000..e53bb4415 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Utils.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.h b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.h new file mode 120000 index 000000000..ba781b44a --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ESP32Utils.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ESP32Utils.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/InetPlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/InetPlatformConfig.h new file mode 120000 index 000000000..10228dc8e --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/InetPlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/InetPlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp new file mode 120000 index 000000000..9cfbec315 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/KeyValueStoreManagerImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.h new file mode 120000 index 000000000..094b1f2db --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/KeyValueStoreManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/KeyValueStoreManagerImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/Logging.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/Logging.cpp new file mode 120000 index 000000000..718dd2271 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/Logging.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/Logging.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/LwIPCoreLock.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/LwIPCoreLock.cpp new file mode 120000 index 000000000..bedaac190 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/LwIPCoreLock.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/LwIPCoreLock.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.cpp new file mode 120000 index 000000000..d9f53e41f --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/NetworkCommissioningDriver.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.h b/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.h new file mode 120000 index 000000000..c4bffcee7 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/NetworkCommissioningDriver.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/NetworkCommissioningDriver.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.cpp new file mode 120000 index 000000000..890a0f9b8 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OTAImageProcessorImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.h new file mode 120000 index 000000000..f06ef5544 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/OTAImageProcessorImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OTAImageProcessorImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadConfig.h new file mode 120000 index 000000000..069bdcd15 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.c b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.c new file mode 120000 index 000000000..0e5a0a618 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.c @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadLauncher.c \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.h b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.h new file mode 120000 index 000000000..d36244505 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/OpenthreadLauncher.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/OpenthreadLauncher.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.cpp new file mode 120000 index 000000000..77f8b4c0a --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/PlatformManagerImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.h new file mode 120000 index 000000000..fc9a57796 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/PlatformManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/PlatformManagerImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ScopedNvsHandle.h b/examples/common/blemesh_platform/platform/ESP32_custom/ScopedNvsHandle.h new file mode 120000 index 000000000..c4767c55e --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ScopedNvsHandle.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ScopedNvsHandle.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/SystemPlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/SystemPlatformConfig.h new file mode 120000 index 000000000..ada1b59ef --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/SystemPlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemPlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.cpp new file mode 120000 index 000000000..d9bddb7e3 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemTimeSupport.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.h b/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.h new file mode 120000 index 000000000..b5bd16627 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/SystemTimeSupport.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/SystemTimeSupport.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.cpp new file mode 120000 index 000000000..0aea9faf6 --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.cpp @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ThreadStackManagerImpl.cpp \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.h b/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.h new file mode 120000 index 000000000..f0238eeee --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/ThreadStackManagerImpl.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/ThreadStackManagerImpl.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/WarmPlatformConfig.h b/examples/common/blemesh_platform/platform/ESP32_custom/WarmPlatformConfig.h new file mode 120000 index 000000000..3c6e822ed --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/WarmPlatformConfig.h @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/WarmPlatformConfig.h \ No newline at end of file diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/bluedroid b/examples/common/blemesh_platform/platform/ESP32_custom/bluedroid new file mode 120000 index 000000000..30a45b32d --- /dev/null +++ b/examples/common/blemesh_platform/platform/ESP32_custom/bluedroid @@ -0,0 +1 @@ +../../../../../connectedhomeip/connectedhomeip/src/platform/ESP32/bluedroid \ No newline at end of file diff --git a/examples/blemesh_bridge/platform/ESP32_custom/nimble/BLEManagerImpl.cpp b/examples/common/blemesh_platform/platform/ESP32_custom/nimble/BLEManagerImpl.cpp similarity index 100% rename from examples/blemesh_bridge/platform/ESP32_custom/nimble/BLEManagerImpl.cpp rename to examples/common/blemesh_platform/platform/ESP32_custom/nimble/BLEManagerImpl.cpp