Is there an issue with series-2 chips HV programming? #1234
Replies: 8 comments
-
|
I just realized I can read/write fuses, and upload hex files with avrdude using this HV programmer, but can not do any of those things with pymcuprog even with the most recent version in their git on this one chip but it works as expected on other chips from series-0. It's obviously not a megatinycore issue, but I'm going to leave this open for a bit in case someone comes by with a suggestion. |
Beta Was this translation helpful? Give feedback.
-
|
Been there also. A few months back I had this rather lengthy exercise to discover that some "older" generation of the new attinies in the "0" and "1" series accept a simple 12V pulse to set the UPDI pin back to UPDI, Heck I even did it with a 12V coin cell battery. |
Beta Was this translation helpful? Give feedback.
-
I'm using this one |
Beta Was this translation helpful? Give feedback.
-
|
Not strange as your Adafruit programmer is based on Stefan Wagners design for this programmer that just sends a HV pulse. You select SerialUPDI in the IDE (or avrdude) as programmer, because the 12V pulse works via a capacitor connected to the DTR line of the CH340G. But it does not generate a powercycle. For the latest generation Attinies you need first a powercycle (PC) and then after about 7 microseconds you need a 12V (HV) pulse. This is called a PCHV programmer, that he also designed a PCB for. So I first built the HV programmer on the bottom in this picture, to find out that I also had to make a PCHV programmer (top in the picture). That one based on a Nano is the one that generates both the Powercycle and the 12V pulse. Here you select "jtag2updi" as the programmer in the IDE (or avrdude). |
Beta Was this translation helpful? Give feedback.
-
|
It all works fine with avrdude and it doesn't perform any kind of power cycle either? |
Beta Was this translation helpful? Give feedback.
-
|
They both work via avrdude as that is the underlying programmer tool in the Arduino IDE. |
Beta Was this translation helpful? Give feedback.
-
|
One very important thing to be aware of: On AVR DD and later, the max voltage on reset is 9.0V ABS MAX, and minimum for HV prog mode is 2v above Vdd, typical given as 7.5, and they repeatedly warn about that. |
Beta Was this translation helpful? Give feedback.
-
|
Moving this to discussion, because it's unclear ifthere's something the core should do differently, so it's not a valid action item for me |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I'm having issues when trying to program an ATtiny424 using a high-voltage (HV) programmer. Programming and setting fuses work perfectly without the HV programmer, but I want to experiment with some flags and need to test that I can recover from it first. I have used the same HV programmer on other chips from series-0 without issue.
However, when I attempt to set fuses or upload a sketch with the HV programmer, I receive the following error:
This is with arduino ide 2.3.2 megatinycore 2.6.10 on linux
Beta Was this translation helpful? Give feedback.
All reactions