Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone project.
[pub/USBasp.git] / Projects / AVRISP / Lib / V2ProtocolConstants.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2009.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 *
33 * Macros for the V2 Protocol Packet Commands and Responses.
34 */
35
36 #ifndef _V2_PROTOCOL_CONSTANTS_
37 #define _V2_PROTOCOL_CONSTANTS_
38
39 /* Macros: */
40 #define CMD_SIGN_ON 0x01
41 #define CMD_SET_PARAMETER 0x02
42 #define CMD_GET_PARAMETER 0x03
43 #define CMD_OSCCAL 0x05
44 #define CMD_LOAD_ADDRESS 0x06
45 #define CMD_FIRMWARE_UPGRADE 0x07
46 #define CMD_RESET_PROTECTION 0x0A
47 #define CMD_ENTER_PROGMODE_ISP 0x10
48 #define CMD_LEAVE_PROGMODE_ISP 0x11
49 #define CMD_CHIP_ERASE_ISP 0x12
50 #define CMD_PROGRAM_FLASH_ISP 0x13
51 #define CMD_READ_FLASH_ISP 0x14
52 #define CMD_PROGRAM_EEPROM_ISP 0x15
53 #define CMD_READ_EEPROM_ISP 0x16
54 #define CMD_PROGRAM_FUSE_ISP 0x17
55 #define CMD_READ_FUSE_ISP 0x18
56 #define CMD_PROGRAM_LOCK_ISP 0x19
57 #define CMD_READ_LOCK_ISP 0x1A
58 #define CMD_READ_SIGNATURE_ISP 0x1B
59 #define CMD_READ_OSCCAL_ISP 0x1C
60 #define CMD_SPI_MULTI 0x1D
61
62 #define CMD_XPROG 0x50
63 #define CMD_XPROG_SETMODE 0x51
64
65 #define XPRG_CMD_ENTER_PROGMODE 0x01
66 #define XPRG_CMD_LEAVE_PROGMODE 0x02
67 #define XPRG_CMD_ERASE 0x03
68 #define XPRG_CMD_WRITE_MEM 0x04
69 #define XPRG_CMD_READ_MEM 0x05
70 #define XPRG_CMD_CRC 0x06
71 #define XPRG_CMD_SET_PARAM 0x07
72
73 #define XPRG_MEM_TYPE_APPL 1
74 #define XPRG_MEM_TYPE_BOOT 2
75 #define XPRG_MEM_TYPE_EEPROM 3
76 #define XPRG_MEM_TYPE_FUSE 4
77 #define XPRG_MEM_TYPE_LOCKBITS 5
78 #define XPRG_MEM_TYPE_USERSIG 6
79 #define XPRG_MEM_TYPE_FACTORY_CALIBRATION 7
80
81 #define XPRG_ERASE_CHIP 1
82 #define XPRG_ERASE_APP 2
83 #define XPRG_ERASE_BOOT 3
84 #define XPRG_ERASE_EEPROM 4
85 #define XPRG_ERASE_APP_PAGE 5
86 #define XPRG_ERASE_BOOT_PAGE 6
87 #define XPRG_ERASE_EEPROM_PAGE 7
88 #define XPRG_ERASE_USERSIG 8
89
90 #define XPRG_MEM_WRITE_ERASE 0
91 #define XPRG_MEM_WRITE_WRITE 1
92
93 #define XPRG_CRC_APP 1
94 #define XPRG_CRC_BOOT 2
95 #define XPRG_CRC_FLASH 3
96
97 #define XPRG_ERR_OK 0
98 #define XPRG_ERR_FAILED 1
99 #define XPRG_ERR_COLLISION 2
100 #define XPRG_ERR_TIMEOUT 3
101
102 #define XPRG_PARAM_NVMBASE 0x01
103 #define XPRG_PARAM_EEPPAGESIZE 0x02
104
105 #define STATUS_CMD_OK 0x00
106 #define STATUS_CMD_TOUT 0x80
107 #define STATUS_RDY_BSY_TOUT 0x81
108 #define STATUS_SET_PARAM_MISSING 0x82
109 #define STATUS_CMD_FAILED 0xC0
110 #define STATUS_CMD_UNKNOWN 0xC9
111 #define STATUS_ISP_READY 0x00
112 #define STATUS_CONN_FAIL_MOSI 0x01
113 #define STATUS_CONN_FAIL_RST 0x02
114 #define STATUS_CONN_FAIL_SCK 0x04
115 #define STATUS_TGT_NOT_DETECTED 0x10
116 #define STATUS_TGT_REVERSE_INSERTED 0x20
117
118 #define PARAM_BUILD_NUMBER_LOW 0x80
119 #define PARAM_BUILD_NUMBER_HIGH 0x81
120 #define PARAM_HW_VER 0x90
121 #define PARAM_SW_MAJOR 0x91
122 #define PARAM_SW_MINOR 0x92
123 #define PARAM_VTARGET 0x94
124 #define PARAM_SCK_DURATION 0x98
125 #define PARAM_RESET_POLARITY 0x9E
126 #define PARAM_STATUS_TGT_CONN 0xA1
127 #define PARAM_DISCHARGEDELAY 0xA4
128
129 #endif