AVR Downloader/UploaDEr - Patches: patch #9573, patch to add atmelice avr32...
You are not allowed to post comments on this tracker with your current authentication level.
patch #9573: patch to add atmelice avr32 programming support to avrdude
Submitter: | Bradley Jarvis <bradley_jarvis> | ||
Submitted: | Thu 22 Feb 2018 10:16:28 AM UTC | ||
Category: | None | Priority: | 5 - Normal |
Status: | Postponed | Privacy: | Public |
Assigned to: | joerg_wunsch | Open/Closed: | Open |
Wed 18 Aug 2021 12:50:56 PM UTC, comment #4: |
Bradley Jarvis <bradley_jarvis> |
Mon 21 Sep 2020 02:09:36 AM UTC, comment #3: No problem, I will update the patch following the formatting guides mentioned.
|
Bradley Jarvis <bradley_jarvis> |
Sun 20 Sep 2020 08:43:22 PM UTC, comment #2: Thanks for submitting the patch!
|
Joerg Wunsch <joerg_wunsch>![]() ![]() |
Thu 22 Feb 2018 10:26:54 AM UTC, comment #1: This patch is in relation to bug #43178, I have had a few people ask me for the patch lately so want to add it back into avrdude. I just re-applied my patch made on 6.1 which was the original code base I worked with to the latest svn trunk version. |
Bradley Jarvis <bradley_jarvis> |
Thu 22 Feb 2018 10:16:28 AM UTC, original submission:
This patch adds support for programming avr32 devices via the atmelice jtag programmer using the jtag3 driver. The update add a new programmer atmelice_avr32 which is used to access the new feature |
Bradley Jarvis <bradley_jarvis> |
Depends on the following items: None found
Items that depend on this one: None found
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
Follow 4 latest changes.
Date | Changed by | Updated Field | Previous Value | => | Replaced by |
---|---|---|---|---|---|
2021-08-18 | bradley_jarvis | Attached File | - | ![]() |
Added avr32-jtag3.patch, #51797 |
2020-09-20 | joerg_wunsch | Status | None | ![]() |
Postponed |
Assigned to | None | ![]() |
joerg_wunsch | ||
2018-02-22 | bradley_jarvis | Attached File | - | ![]() |
Added avr32-jtag3.patch, #43383 |
Hi Joerg, I have attached a new patch with updated style changes and have also now tested on the AVR32 platform via jtag and also the AVR8 via ISP and XMEGA via PDI and all appears to work fine. There were some things that I needed to fix to get AVR8/XMEGA working.
I did find a potential memory leak in the current jtag3 driver in the function jtag3_command(), at the end of the function on error the the memort allocated to *resp is freed and then resp=0, it should have been *resp=0. However looking through the rest of the code it only ever called free on resp if the jtag3_command failed so really no problem there.
Please let me know if I need to do anything else testing wise etc. Also not sure how to remove the old patch