mirror of
				https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
				synced 2025-10-29 18:11:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			974 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			974 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| source ./buildroot/bin/buildFunctions;
 | |
| exitcode=0;
 | |
| 
 | |
| # CC2500-only 64Kb builds
 | |
| printf "\e[33;1mBuilding mm-stm-cc2500-64-aetr-v$MULTI_VERSION.bin\e[0m\n";
 | |
| opt_enable $ALL_PROTOCOLS;
 | |
| opt_disable IKEAANSLUTA_CC2500_INO;
 | |
| opt_disable ENABLE_PPM;
 | |
| opt_disable A7105_INSTALLED;
 | |
| opt_disable CYRF6936_INSTALLED;
 | |
| opt_disable NRF24L01_INSTALLED;
 | |
| opt_disable INVERT_TELEMETRY;
 | |
| buildMulti;
 | |
| exitcode=$((exitcode+$?));
 | |
| mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-64-aetr-v$MULTI_VERSION.bin;
 | |
| 
 | |
| printf "\e[33;1mBuilding mm-stm-cc2500-64-taer-v$MULTI_VERSION.bin\e[0m\n";
 | |
| opt_replace AETR TAER;
 | |
| buildMulti;
 | |
| exitcode=$((exitcode+$?));
 | |
| mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-64-taer-v$MULTI_VERSION.bin;
 | |
| 
 | |
| printf "\e[33;1mBuilding mm-stm-cc2500-64-reta-v$MULTI_VERSION.bin\e[0m\n";
 | |
| opt_replace TAER RETA;
 | |
| buildMulti;
 | |
| exitcode=$((exitcode+$?));
 | |
| mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-64-reta-v$MULTI_VERSION.bin;
 | |
| 
 | |
| exit $exitcode;
 |