2023-12-09 17:14:38 +00:00
|
|
|
# PowerShell script to flash a precompiled HEX file via avrdude.exe with a USBasp programmer
|
|
|
|
|
2023-12-09 17:18:39 +00:00
|
|
|
$Mcu = "t13"
|
|
|
|
$HexFile ="\pre_built\attiny13_4-8Mhz.hex"
|
|
|
|
$Programmer="usbasp"
|
2023-12-09 17:14:38 +00:00
|
|
|
|
2023-12-09 17:18:39 +00:00
|
|
|
.\avrdude.exe -p $Mxu -B 10 -c $Programmer -U flash:w:$HexFile
|