~gabe/flashlight-firmware/anduril2

« back to all changes in this revision

Viewing changes to Mike_C/X85/_X85_1_Flash.bat

  • Committer: Selene Scriven
  • Date: 2016-09-09 21:24:27 UTC
  • mfrom: (169.1.2 add-x85)
  • Revision ID: ubuntu@toykeeper.net-20160909212427-rjth501ui6cqugud
Merged in Mike C's X85 firmware.
It's pretty full-featured and advanced, but requires a special driver.
Still needs more info in its "meta" file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@ECHO OFF
 
2
CD Debug
 
3
:START
 
4
CLS
 
5
ECHO  --=* TEST *=--
 
6
ECHO.
 
7
avrdude -p t85 -c usbasp -n
 
8
ECHO.
 
9
ECHO PRESS ENTER TO FLASH!
 
10
ECHO.
 
11
PAUSE
 
12
CLS
 
13
 
 
14
ECHO  --=* FLASH *=--
 
15
ECHO.
 
16
 
 
17
avrdude -p t85 -c usbasp -u -U flash:w:X85.hex:i -U lfuse:w:0xe2:m -U hfuse:w:0xde:m -U efuse:w:0xff:m
 
18
 
 
19
ECHO.
 
20
PAUSE
 
21
GOTO START