Add binaries and bootload tools.

This commit is contained in:
Nathan Seidle 2021-10-14 14:58:11 -06:00
parent d719b31037
commit 140fe56ee7
6 changed files with 19549 additions and 0 deletions

1703
Binaries/OpenLog_v43.hex Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

16085
Binaries/avrdude.conf Normal file

File diff suppressed because it is too large Load Diff

BIN
Binaries/avrdude.exe Normal file

Binary file not shown.

View File

@ -0,0 +1,21 @@
@echo off
rem This batch file does not set the fuse bits. We assume you are updating a pre-existing OpenLog
if [%1]==[] goto usage
@echo Programming the SparkFun OpenLog
@pause
:loop
@echo -
@echo Programming binary: %1 on %2
@avrdude -Cavrdude.conf -v -V -patmega328p -carduino -P %2 -b115200 -D -Uflash:w:%1:i
@echo Done programming! Ready for next board.
@pause
goto loop
:usage
@echo Missing the binary file and com port arguments. Ex: batch_program.bat OpenLog_v43.hex COM3

4
Binaries/readme.md Normal file
View File

@ -0,0 +1,4 @@
Programming OpenLog via Serial
===========================================================
The SparkFun OpenLog can be updated using a USB to serial adapter and 5 jumper wires. Run batch_program.bat with a given COM port and HEX file.