-
I'm currently trying to dump the firmware for my 'nano every' but I keep getting 'programmer is not responding'.
How should I go about fixing my command? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
If you're using the on-board USB connector, you can't use so:
However, the Nano every requires a "1200bps touch" in order to enter jtag2updi mode instead of the typical serial port.
|
Beta Was this translation helpful? Give feedback.
AH! I figured it out. My version of
stty
must be newer:PORT=/dev/ttyACM0; stty -F $PORT 1200 && avrdude -pm4809 -cjtag2updi -P$PORT -Uflash:r:out.hex:r
Thank you very much!