mirror of
				https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
				synced 2025-10-30 02:21:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| source ./buildroot/bin/buildFunctions;
 | |
| exitcode=0;
 | |
| 
 | |
| printf "\e[33;1mBuilding mm-orangerx-aetr-green-inv-v$MULTI_VERSION.bin\e[0m\n";
 | |
| opt_enable $ALL_PROTOCOLS;
 | |
| opt_disable ORANGE_TX_BLUE;
 | |
| buildMulti;
 | |
| exitcode=$((exitcode+$?));
 | |
| mv build/Multiprotocol.ino.bin ./binaries/mm-orangerx-aetr-green-inv-v$MULTI_VERSION.bin;
 | |
| 
 | |
| printf "\e[33;1mBuilding mm-orangerx-aetr-blue-inv-v$MULTI_VERSION.bin\e[0m\n";
 | |
| opt_enable ORANGE_TX_BLUE;
 | |
| buildMulti;
 | |
| exitcode=$((exitcode+$?));
 | |
| mv build/Multiprotocol.ino.bin ./binaries/mm-orangerx-aetr-blue-inv-v$MULTI_VERSION.bin;
 | |
| 
 | |
| exit $exitcode;
 |