mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-04 20:38:14 +00:00
324419241f
Better for radios with 128x64 LCDs.
14 lines
360 B
Bash
14 lines
360 B
Bash
#!/usr/bin/env bash
|
|
|
|
source ./buildroot/bin/buildFunctions;
|
|
exitcode=0;
|
|
|
|
printf "\e[33;1mBuilding mm-stm-xn297dump-ftdidebug-v$MULTI_VERSION.bin\e[0m\n";
|
|
opt_disable $ALL_PROTOCOLS;
|
|
opt_add XN297DUMP_NRF24L01_INO;
|
|
buildMulti;
|
|
exitcode=$((exitcode+$?));
|
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-xn297dump-ftdidebug-v$MULTI_VERSION.bin;
|
|
|
|
exit $exitcode;
|