Add and modify programmers for gemmaBoot in avrdude.conf.in

This commit is contained in:
Stefan Rueger 2022-09-07 09:56:28 +01:00
parent a536a01ebf
commit a5f3885b50
1 changed files with 21 additions and 6 deletions

View File

@ -1459,20 +1459,35 @@ programmer
; ;
#------------------------------------------------------------ #------------------------------------------------------------
# gemmaBoot # arduino_gemma
#------------------------------------------------------------ #------------------------------------------------------------
# Serving the Gemma bootloader # https://github.com/arduino/ArduinoCore-avr/tree/master/bootloaders/gemma
# https://github.com/adafruit/Adafruit-Trinket-Gemma-Bootloader
programmer programmer
id = "gemmaBoot"; id = "arduino_gemma";
desc = "Gemma bootloader disguised as USBtiny"; desc = "Arduino Gemma bootloader disguised as USBtiny";
type = "usbtiny"; type = "usbtiny";
prog_modes = PM_SPM; prog_modes = PM_SPM;
connection_type = usb; connection_type = usb;
usbvid = 0x2341; usbvid = 0x2341;
usbpid = 0x0105; usbpid = 0x0c9f;
;
#------------------------------------------------------------
# adafruit_gemma
#------------------------------------------------------------
# https://github.com/adafruit/Adafruit-Trinket-Gemma-Bootloader
programmer
id = "adafruit_gemma";
desc = "Adafruit Trinket Gemma bootloader disguised as USBtiny";
type = "usbtiny";
prog_modes = PM_SPM;
connection_type = usb;
usbvid = 0x1781;
usbpid = 0x0c9f;
; ;
#------------------------------------------------------------ #------------------------------------------------------------