DebugWIRE

Summary

debugWIRE is a serial communications protocol, designed by Atmel. It is used for on-chip debugging of AVR microcontrollers.

Protocol edit

debugWIRE is designed as a simpler alternative to JTAG, aimed at microcontrollers (MCUs) with limited resources. It is supported by the classic ATtiny and some smaller ATmega MCUs, such as the ATmega328. By using debugWIRE one has full read and write access to all memory and full control over the execution flow. It supports single-step, run-to-cursor, step-out, and software break instructions. A breakpoint (run-to-cursor) will be set by reprogramming the BREAK[1] opcode into the flash memory of the MCU. Care must be taken due to the limited number of guaranteed write cycles (10000) of the device.[2]

Programmer models edit

debugWIRE is supported by all modern hardware debuggers from Microchip. This includes Atmel-ICE,[3] JTAGICE3, AVR Dragon, JTAGICE mkII, and SNAP.[4] It is also possible to build a cheap debugWIRE hardware debugger[5] based on an open-source Arduino sketch.[6]

debugWIRE specifications edit

debugWIRE is activated by setting (programming to zero) of the fuse DWEN (debugWIRE enable), normally located in the high fuse byte. After this action the /RESET pin function isn't available anymore and the ISP protocol cannot be used. debugWIRE can be disabled with any of the mentioned debuggers by sending a special reset command that disables temporarily the debugWIRE function and reenables /RESET and also ISP until next power down cycle. debugWIRE is not able to program the fuses of a device. If you want to disable debugWIRE permanently you have to disable the function temporarily and program the fuse using the now available ISP function.[7] debugWIRE uses a 1 wire open drain serial connection. The default baud rate used is MCU clock/128. Sending a BREAK will return 0x55 which is used to detect the baud rate. The MCU will return a BREAK when a breakpoint is hit or a collision is detected on the debugWIRE connection. 0x06 is used to disable debugWIRE and reenable /RESET and ISP, 0x07 resets the MCU, 0xF0 returns the PC, 0xF3 the debugWIRE ID.[8][9][10]

References edit

  1. ^ AVR Instruction Set Manual
  2. ^ ATtiny25-ATtiny45-ATtiny85_Datasheet-Summary.pdf
  3. ^ Atmel-ICE
  4. ^ MPLAB SNAP In-Circuit Debugger
  5. ^ A debugWIRE Hardware Debugger for Less Than 10 €
  6. ^ dw-link---An Arduino-based debugWIRE debugger
  7. ^ debugWIRE article (in German)
  8. ^ The debugWIRE protocol
  9. ^ Simple stand-alone debugWIRE debugger (open source)
  10. ^ Microchip Makes (25 November 2015). "Advanced Debugging with Arduino Boards" – via YouTube.