diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2014-05-02 12:01:53 +0200 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2016-11-23 13:08:26 +0100 |
commit | 5bf5025dfe5003a67cf21da9f7f2dbfc9b99aaef (patch) | |
tree | 814d6ff5d2fc1f8193372d921b5bbb7c00f1c09b | |
parent | 64895cecac6670fa0301f4e45d18a44c15bc90de (diff) |
Add support for the JTAGICE3 programmer
This adds the configuration needed to support JTAGICE3.
-rw-r--r-- | programmers.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/programmers.txt b/programmers.txt index 2836a40..661a0c9 100644 --- a/programmers.txt +++ b/programmers.txt @@ -75,3 +75,20 @@ stk500.protocol=stk500 stk500.program.protocol=stk500 stk500.program.tool=avrdude stk500.program.extra_params=-P{serial.port} + +jtag3isp.name=Atmel JTAGICE3 (ISP mode) +jtag3isp.communication=usb +jtag3isp.protocol=jtag3isp +jtag3isp.program.protocol=jtag3isp +jtag3isp.program.tool=avrdude +jtag3isp.program.extra_params= + +jtag3.name=Atmel JTAGICE3 (JTAG mode) +jtag3.communication=usb +jtag3.protocol=jtag3 +jtag3.program.protocol=jtag3 +jtag3.program.tool=avrdude +# Set a bitclock of 0.1us (the fastest supported value). This should +# work regardless of the crystal used, since JTAG doesn't use the MCU +# clock but dictates its own clock. +jtag3.program.extra_params=-B0.1 |