From 5bf4ce59ac6c7cf528eefa32280ed40854252d1f Mon Sep 17 00:00:00 2001 From: Ben Lye Date: Mon, 6 Nov 2023 17:06:30 +0000 Subject: [PATCH] Script cleanup --- buildroot/bin/build_release_stm32f1_no_debug | 6 ------ 1 file changed, 6 deletions(-) diff --git a/buildroot/bin/build_release_stm32f1_no_debug b/buildroot/bin/build_release_stm32f1_no_debug index b8b5520..43a1744 100644 --- a/buildroot/bin/build_release_stm32f1_no_debug +++ b/buildroot/bin/build_release_stm32f1_no_debug @@ -3,10 +3,6 @@ source ./buildroot/bin/buildFunctions; exitcode=0; -# Builds for the DIY 5-in-1 module exceed the 120KB working capacity of the STM32F103CB -# To work around this we have to disable some protocols in the builds for this module -#DIY_5IN1_DISABLED="MOULDKG_NRF24L01_INO"; - # Generic 4-in-1 FCC builds printf "\e[33;1mBuilding mm-stm-serial-aetr-v$MULTI_VERSION.bin\e[0m\n"; opt_disable ENABLE_PPM; @@ -50,7 +46,6 @@ mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-lbt-v$MULTI_VERSION printf "\e[33;1mBuilding mm-stm-5in1-aetr-v$MULTI_VERSION.bin\e[0m\n"; opt_remove MULTI_EU; opt_replace RETA AETR; -#opt_disable $DIY_5IN1_DISABLED; opt_enable SX1276_INSTALLED; buildMulti; exitcode=$((exitcode+$?)); @@ -73,7 +68,6 @@ printf "\e[33;1mBuilding mm-tlite5in1-aetr-v$MULTI_VERSION.bin\e[0m\n"; opt_replace RETA AETR; opt_disable INVERT_TELEMETRY; opt_disable SX1276_INSTALLED; -#opt_enable $DIY_5IN1_DISABLED; opt_enable "MULTI_5IN1_INTERNAL JP_TLite" buildMulti; exitcode=$((exitcode+$?));