platform-atmelavr icon indicating copy to clipboard operation
platform-atmelavr copied to clipboard

Combine atmelavr and atmelmegaavr Avrdude versions

Open MCUdude opened this issue 4 years ago • 1 comments

Hi!

Wouldn't it be a good idea to combine the atmelavr and the atmelmegaavr Avrdude versions? Currently, the atmelmegaavr version is more up to date. The reason why I'm stressing this is because only the atmelmegaavr version supports the new MPLAB SNAP and PICkit4 programmers in ISP mode, and support for the latest official programmers is always a good thing.

MCUdude avatar Jan 05 '21 20:01 MCUdude

in any case, these lines has to be added to avrdude.conf:

programmer
    id    = "pickit4_isp";
    desc  = "MPLAB(R) PICkit 4 in ISP mode";
    type  = "jtagice3_isp";
    connection_type = usb;
    usbpid = 0x2177;
 ;

 programmer
    id    = "snap_isp";
    desc  = "MPLAB(R) SNAP in ISP mode";
    type  = "jtagice3_isp";
    connection_type = usb;
    usbpid = 0x217F, 0x2180, 0x2181;
 ;

MCUdude avatar Jan 24 '21 21:01 MCUdude