Skip to content

Commit

Permalink
Added batch file to help compiling OrangeTX
Browse files Browse the repository at this point in the history
  • Loading branch information
pascallanger committed Oct 17, 2016
1 parent eb6fc4f commit b9f2979
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Multiprotocol/Build_orangetx.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@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

0 comments on commit b9f2979

Please sign in to comment.