From bed7f0c537b114f57061eb54066ab48e1aad4b7b Mon Sep 17 00:00:00 2001 From: weicheng Date: Thu, 7 Sep 2023 04:11:10 +0800 Subject: [PATCH] enable asr lwip lock assert; add more ASR CI (#29041) Co-authored-by: weicheng --- .github/workflows/examples-asr.yaml | 2 ++ src/inet/UDPEndPointImplLwIP.cpp | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 .github/workflows/examples-asr.yaml mode change 100644 => 100755 src/inet/UDPEndPointImplLwIP.cpp diff --git a/.github/workflows/examples-asr.yaml b/.github/workflows/examples-asr.yaml old mode 100644 new mode 100755 index cc9a6ccdbab73b..f34af7876eecc0 --- a/.github/workflows/examples-asr.yaml +++ b/.github/workflows/examples-asr.yaml @@ -57,5 +57,7 @@ jobs: --target asr-asr582x-bridge-factory \ --target asr-asr582x-temperature-measurement-rotating_id \ --target asr-asr582x-thermostat-rio \ + --target asr-asr582x-dishwasher \ + --target asr-asr582x-refrigerator \ build \ " \ No newline at end of file diff --git a/src/inet/UDPEndPointImplLwIP.cpp b/src/inet/UDPEndPointImplLwIP.cpp old mode 100644 new mode 100755 index 8690fb3839377c..8db3d7e593e2b0 --- a/src/inet/UDPEndPointImplLwIP.cpp +++ b/src/inet/UDPEndPointImplLwIP.cpp @@ -41,8 +41,7 @@ static_assert(LWIP_VERSION_MAJOR > 1, "CHIP requires LwIP 2.0 or later"); -#if !(CHIP_DEVICE_LAYER_TARGET_BL602 || CHIP_DEVICE_LAYER_TARGET_BL702 || CHIP_DEVICE_LAYER_TARGET_BL702L || \ - CHIP_DEVICE_LAYER_TARGET_ASR) +#if !(CHIP_DEVICE_LAYER_TARGET_BL602 || CHIP_DEVICE_LAYER_TARGET_BL702 || CHIP_DEVICE_LAYER_TARGET_BL702L) static_assert(LWIP_TCPIP_CORE_LOCKING, "CHIP requires config LWIP_TCPIP_CORE_LOCKING enabled"); #endif