Close to fixing MSP430 JTAG, which was broken during Huseby's refactoring.
[goodfet] / firmware / include / avr.h
index 930ab99..bcf76ef 100644 (file)
@@ -3,7 +3,13 @@
   \brief AVR SPI Programmer
 */
 
+#ifndef AVR_H
+#define AVR_H
+
 #include "spi.h"
+#include "app.h"
+
+#define AVR 0x32
 
 //! Setup the AVR pins.
 void avrsetup();
@@ -34,7 +40,7 @@ u8 avr_pokeeeprom(u16 adr, u8 val);
 u8 avr_isready();
 
 //Command codes.
-//! Perform chip erase.
+//! Perform a chip erase.
 #define AVR_ERASE 0xF0
 //! Fetch RDY/!BSY byte.
 #define AVR_RDYBSY 0xF1
@@ -55,3 +61,9 @@ u8 avr_isready();
 #define AVR_READFUSES 0x84
 //! Read calibration byte.
 #define AVR_READCAL 0x85
+//! Bulk load data
+#define AVR_BULKLOAD 0x86
+
+extern app_t const avr_app;
+
+#endif // AVR_H