From 1097004461fa36f237a14cdc2466e93cff3a2012 Mon Sep 17 00:00:00 2001 From: Sam Ryan Date: Mon, 23 Oct 2023 10:40:20 -0400 Subject: [PATCH] Allow redefines of Ameba config options (#29733) --- src/platform/Ameba/CHIPDevicePlatformConfig.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/platform/Ameba/CHIPDevicePlatformConfig.h b/src/platform/Ameba/CHIPDevicePlatformConfig.h index 04d510c8f54c31..647466b5970102 100644 --- a/src/platform/Ameba/CHIPDevicePlatformConfig.h +++ b/src/platform/Ameba/CHIPDevicePlatformConfig.h @@ -32,9 +32,13 @@ #define CHIP_DEVICE_CONFIG_ENABLE_THREAD 1 #endif +#ifndef CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE #define CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE 1 +#endif +#ifndef CHIP_DEVICE_CONFIG_ENABLE_CHIP_TIME_SERVICE_TIME_SYNC #define CHIP_DEVICE_CONFIG_ENABLE_CHIP_TIME_SERVICE_TIME_SYNC 0 +#endif // ========== Platform-specific Configuration =========