ZakKemble / AVRDUDESS

A GUI for AVRDUDE
https://blog.zakkemble.net/avrdudess-a-gui-for-avrdude/
GNU General Public License v3.0
596 stars 129 forks source link

AVRDUDE 7.2 - new format of avrdude.conf #78

Closed ro-bercik closed 11 months ago

ro-bercik commented 1 year ago

There is a new version of avrdude.exe from official repo: https://github.com/avrdudes/avrdude But... there was some changes in avrdude.conf config file. The "id" tag in "programmer" section now contains multiply strings, so code for AvrDudess need some updates.

Here is an example: v7.1) avrdude.conf: programmer id = "arduino-ft232r"; desc = "Arduino: FT232R connected to ISP"; type = "ftdi_syncbb";

v7.2) avrdude.conf: programmer id = "arduino-ft232r", "diecimila"; desc = "Arduino: FT232R connected to ISP"; type = "ftdi_syncbb";

Actual version of AvrDudess detects programmer as: "-c arduino-ft232r", "diecimila". Now it should be divided in two different standard commands: "-c arduino-ft232r" and "-c diecimila". avrdudess 7 2

BlackBrix commented 1 year ago

I second that +1

ZakKemble commented 11 months ago

Fixed in this commit https://github.com/ZakKemble/AVRDUDESS/commit/905a19d74852085cc2e04a9077b8ec265b69d51c and now available in v2.15 - https://github.com/ZakKemble/AVRDUDESS/releases/tag/v2.15