diff --git a/check_custom_build_flags_esp32.sh b/check_custom_build_flags_esp32.sh index 3d4d6b6..9332d4e 100755 --- a/check_custom_build_flags_esp32.sh +++ b/check_custom_build_flags_esp32.sh @@ -5,6 +5,8 @@ export FLAGS="$FLAGS -DMODBUS_DISABLE" export FLAGS="$FLAGS -DOWIRE_DISABLE" export FLAGS="$FLAGS -DDHT_DISABLE" export FLAGS="$FLAGS -DCOUNTER_DISABLE" +export FLAGS="$FLAGS -DSPILED_DISABLE" +export FLAGS="$FLAGS -DAC_DISABLE" #export FLAGS="$FLAGS -DM5STACK" #export FLAGS="$FLAGS -std=gnu++11" CUSTOM_BUILD_FLAGS_FILE=custom-build-flags/build_flags_esp32.sh diff --git a/check_custom_build_flags_nrf52840.sh b/check_custom_build_flags_nrf52840.sh index 9b02f8f..93335c8 100755 --- a/check_custom_build_flags_nrf52840.sh +++ b/check_custom_build_flags_nrf52840.sh @@ -9,6 +9,8 @@ export FLAGS="$FLAGS -std=gnu++11" export FLAGS="$FLAGS -DWIFI_MANAGER_DISABLE" export FLAGS="$FLAGS -DCOUNTER_DISABLE" export FLAGS="$FLAGS -DCSSHDC_DISABLE" +export FLAGS="$FLAGS -DSPILED_DISABLE" +export FLAGS="$FLAGS -DAC_DISABLE" CUSTOM_BUILD_FLAGS_FILE=custom-build-flags/build_flags_nrf52840.sh if [ -f $CUSTOM_BUILD_FLAGS_FILE ]; then diff --git a/check_custom_build_flags_stm32.sh b/check_custom_build_flags_stm32.sh index a9b00fe..209aeda 100755 --- a/check_custom_build_flags_stm32.sh +++ b/check_custom_build_flags_stm32.sh @@ -8,6 +8,8 @@ export FLAGS="$FLAGS -DDHT_DISABLE" export FLAGS="$FLAGS -DCOUNTER_DISABLE" export FLAGS="$FLAGS -DNO_HOMIE" export FLAGS="$FLAGS -DCSSHDC_DISABLE" +export FLAGS="$FLAGS -DSPILED_DISABLE" +export FLAGS="$FLAGS -DAC_DISABLE" if [ -f $CUSTOM_BUILD_FLAGS_FILE ]; then source $CUSTOM_BUILD_FLAGS_FILE fi