Skip to content

Commit

Permalink
ravedude: Fix trinket board def
Browse files Browse the repository at this point in the history
Not sure how we got here, but the original Trinket was an ATtiny85
board; see https://www.adafruit.com/product/1501.

I tested this change on a Trinket I have here, and also found that it
does not support chip erase via avrdude.
  • Loading branch information
innermatrix authored Jan 6, 2025
1 parent 3c08979 commit a751475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ravedude/src/boards.toml
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@

[trinket.avrdude]
programmer = "usbtiny"
partno = "atmega328p"
partno = "attiny85"
baudrate = -1
do-chip-erase = true
do-chip-erase = false

# The Trinket does not have USB-Serial, thus no port is known or needed.

Expand Down

0 comments on commit a751475

Please sign in to comment.