+/*\r
+ LUFA Library\r
+ Copyright (C) Dean Camera, 2009.\r
+ \r
+ dean [at] fourwalledcubicle [dot] com\r
+ www.fourwalledcubicle.com\r
+*/\r
+\r
+/*\r
+ Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
+\r
+ Permission to use, copy, modify, and distribute this software\r
+ and its documentation for any purpose and without fee is hereby\r
+ granted, provided that the above copyright notice appear in all\r
+ copies and that both that the copyright notice and this\r
+ permission notice and warranty disclaimer appear in supporting\r
+ documentation, and that the name of the author not be used in\r
+ advertising or publicity pertaining to distribution of the\r
+ software without specific, written prior permission.\r
+\r
+ The author disclaim all warranties with regard to this\r
+ software, including all implied warranties of merchantability\r
+ and fitness. In no event shall the author be liable for any\r
+ special, indirect or consequential damages or any damages\r
+ whatsoever resulting from loss of use, data or profits, whether\r
+ in an action of contract, negligence or other tortious action,\r
+ arising out of or in connection with the use or performance of\r
+ this software.\r
+*/\r
+\r
+/** \file\r
+ *\r
+ * Macros for the V2 Protocol Packet Commands and Responses.\r
+ */\r
+\r
+#ifndef _V2_PROTOCOL_CONSTANTS_\r
+#define _V2_PROTOCOL_CONSTANTS_\r
+\r
+ /* Macros: */\r
+ #define CMD_SIGN_ON 0x01\r
+ #define CMD_SET_PARAMETER 0x02\r
+ #define CMD_GET_PARAMETER 0x03\r
+ #define CMD_OSCCAL 0x05\r
+ #define CMD_LOAD_ADDRESS 0x06\r
+ #define CMD_FIRMWARE_UPGRADE 0x07\r
+ #define CMD_RESET_PROTECTION 0x0A\r
+ #define CMD_ENTER_PROGMODE_ISP 0x10\r
+ #define CMD_LEAVE_PROGMODE_ISP 0x11\r
+ #define CMD_CHIP_ERASE_ISP 0x12\r
+ #define CMD_PROGRAM_FLASH_ISP 0x13\r
+ #define CMD_READ_FLASH_ISP 0x14\r
+ #define CMD_PROGRAM_EEPROM_ISP 0x15\r
+ #define CMD_READ_EEPROM_ISP 0x16\r
+ #define CMD_PROGRAM_FUSE_ISP 0x17\r
+ #define CMD_READ_FUSE_ISP 0x18\r
+ #define CMD_PROGRAM_LOCK_ISP 0x19\r
+ #define CMD_READ_LOCK_ISP 0x1A\r
+ #define CMD_READ_SIGNATURE_ISP 0x1B\r
+ #define CMD_READ_OSCCAL_ISP 0x1C\r
+ #define CMD_SPI_MULTI 0x1D\r
+\r
+ #define STATUS_CMD_OK 0x00\r
+ #define STATUS_CMD_TOUT 0x80\r
+ #define STATUS_RDY_BSY_TOUT 0x81\r
+ #define STATUS_SET_PARAM_MISSING 0x82\r
+ #define STATUS_CMD_FAILED 0xC0\r
+ #define STATUS_CMD_UNKNOWN 0xC9\r
+ #define STATUS_ISP_READY 0x00\r
+ #define STATUS_CONN_FAIL_MOSI 0x01\r
+ #define STATUS_CONN_FAIL_RST 0x02\r
+ #define STATUS_CONN_FAIL_SCK 0x04\r
+ #define STATUS_TGT_NOT_DETECTED 0x10\r
+ #define STATUS_TGT_REVERSE_INSERTED 0x20\r
+\r
+ #define PARAM_BUILD_NUMBER_LOW 0x80\r
+ #define PARAM_BUILD_NUMBER_HIGH 0x81\r
+ #define PARAM_HW_VER 0x90\r
+ #define PARAM_SW_MAJOR 0x91\r
+ #define PARAM_SW_MINOR 0x92\r
+ #define PARAM_VTARGET 0x94\r
+ #define PARAM_SCK_DURATION 0x98\r
+ #define PARAM_RESET_POLARITY 0x9E\r
+ #define PARAM_STATUS_TGT_CONN 0xA1\r
+ #define PARAM_DISCHARGEDELAY 0xA4\r
+\r
+#endif\r