-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from akadamson/master
update master from experimental and release 0.4.3
- Loading branch information
Showing
28 changed files
with
4,001 additions
and
3,657 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,6 @@ | ||
@echo off | ||
rem This file is the script to set path for ARM eabi tool chain. | ||
|
||
rem set PATH=C:\Program Files (x86)\GNU Tools ARM Embedded\4.7 2012q4\bin;%PATH% | ||
set PATH=C:\Program Files (x86)\GNU Tools ARM Embedded\4.7 2013q2\bin;%PATH% | ||
start |
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,26 @@ | ||
@echo off | ||
set filename=%1% | ||
set FLASHTOOL=setup\dfu-util-static.exe | ||
|
||
if "%filename%" == "" set filename=out\STM32Gimbal.USB.bin | ||
|
||
echo taking board into boot mode ... | ||
REM boot loader hack by ala42 | ||
REM let dfu-util talk to the USB VCP address. This is detected by the VCP handler | ||
REM which takes the board into the boot loader | ||
%FLASHTOOL% --device 0483:5740 -D dummyname 2>1 >nul | ||
call :sleep 4 | ||
|
||
echo starting upload ... | ||
echo. | ||
:loop | ||
%FLASHTOOL% --reset --device 1eaf:0003 --alt 1 --download %filename% && goto :end | ||
call :sleep 2 | ||
goto :loop | ||
|
||
:sleep | ||
ping -n %1 localhost >nul | ||
goto :EOF | ||
|
||
:end | ||
pause |
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,11 @@ | ||
@echo off | ||
set flasher="%ProgramFiles%\STMicroelectronics\STM32 ST-LINK Utility\ST-LINK Utility\ST-LINK_CLI.exe" | ||
if exist %flasher% goto :flash | ||
set flasher="%ProgramFiles(x86)%\STMicroelectronics\STM32 ST-LINK Utility\ST-LINK Utility\ST-LINK_CLI.exe" | ||
|
||
:flash | ||
set filename=%1% | ||
if "%filename%" == "" set filename=out\STM32Gimbal.bin | ||
|
||
%flasher% -c SWD -P %filename% 0x08004000 -V -Rst | ||
pause |
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,11 @@ | ||
@echo off | ||
set flasher="%ProgramFiles%\STMicroelectronics\STM32 ST-LINK Utility\ST-LINK Utility\ST-LINK_CLI.exe" | ||
if exist %flasher% goto :flash | ||
set flasher="%ProgramFiles(x86)%\STMicroelectronics\STM32 ST-LINK Utility\ST-LINK Utility\ST-LINK_CLI.exe" | ||
|
||
:flash | ||
set filename=%1% | ||
if "%filename%" == "" set filename=out\STM32Gimbal.bin | ||
|
||
%flasher% -c SWD -P %filename% 0x08000000 -V -Rst | ||
pause |
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
Binary file modified
BIN
+12 Bytes
(100%)
GUI/EvvGC_GUI_v0_4/application.windows32/lib/EvvGC_GUI_v0_4.jar
Binary file not shown.
Oops, something went wrong.