-
-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added batch file to help compiling OrangeTX
- Loading branch information
pascallanger
committed
Oct 17, 2016
1 parent
eb6fc4f
commit b9f2979
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |