This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.txt
49 lines (36 loc) · 1.75 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
JTAGICE mkII compatible DebugWire debugger
==========================================
This project is an attempt to produce a DebugWire-compatible debugger for use
with `avarice` using the JTAGICE mkII protocol.
At the moment, this is merely a proof of concept.
Hardware
--------
The hardware for now is being prototyped on a Freetronics LeoStick, with the
Arduino firmware erased. The LeoStick is basically a thumbdrive-sized
development board for the Atmel ATMega32U4 and incorporates a few on-board
peripherals, namely a pushbutton, two RGB LEDs, and a piezo buzzer.
The plan is to make use of the ATMega32U4's UART (pins 1 & 2) via a
non-inverting open-collector buffer to drive the nRESET pin of the target
device. SPI to the target will be bit-banged (the ATMega32U4 SPI pins are
wired to the ISP port of the LeoStick itself).
Software
--------
We will use the LUFA stack to provide the comms to the host. Aim is to be
compatible with `avarice` for use with `avr-gdb`.
Protocol
--------
AVR067 (http://www.atmel.com/images/doc2587.pdf) documents the JTAGICE
protocol.
License
-------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (see COPYING); if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA