mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-05 03:48:15 +00:00
20 lines
381 B
Batchfile
20 lines
381 B
Batchfile
|
@echo off
|
||
|
if "%AVR32_HOME%"=="" (
|
||
|
echo.
|
||
|
echo You must install winavr to compile Multi for OrangeTX: https://sourceforge.net/projects/winavr/
|
||
|
echo.
|
||
|
pause
|
||
|
exit /b
|
||
|
)
|
||
|
if exist MultiOrange.cpp.orangetx ren *.orangetx *.
|
||
|
if exist .dep (make clean)
|
||
|
md .dep
|
||
|
make
|
||
|
if exist MultiOrange.hex (
|
||
|
echo.
|
||
|
echo Compilation OK.
|
||
|
echo Use MultiOrange.hex to program your OrangeTX module.
|
||
|
echo.
|
||
|
)
|
||
|
pause
|