2cc7fc4329449f90d990e28544f84827aa582422
[pub/USBasp.git] / Projects / AVRISP / Lib / V2Protocol.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 * Header file for V2Protocol.c.
34 */
35
36 #ifndef _V2_PROTOCOL_
37 #define _V2_PROTOCOL_
38
39 /* Includes: */
40 #include <avr/io.h>
41
42 #include <LUFA/Drivers/USB/USB.h>
43
44 /* Macros: */
45 #define CMD_SIGN_ON 0x01
46 #define CMD_SET_PARAMETER 0x02
47 #define CMD_GET_PARAMETER 0x03
48 #define CMD_OSCCAL 0x05
49 #define CMD_LOAD_ADDRESS 0x06
50 #define CMD_FIRMWARE_UPGRADE 0x07
51 #define CMD_RESET_PROTECTION 0x0A
52 #define CMD_ENTER_PROGMODE_ISP 0x10
53 #define CMD_LEAVE_PROGMODE_ISP 0x11
54 #define CMD_CHIP_ERASE_ISP 0x12
55 #define CMD_PROGRAM_FLASH_ISP 0x13
56 #define CMD_READ_FLASH_ISP 0x14
57 #define CMD_PROGRAM_EEPROM_ISP 0x15
58 #define CMD_READ_EEPROM_ISP 0x16
59 #define CMD_PROGRAM_FUSE_ISP 0x17
60 #define CMD_READ_FUSE_ISP 0x18
61 #define CMD_PROGRAM_LOCK_ISP 0x19
62 #define CMD_READ_LOCK_ISP 0x1A
63 #define CMD_READ_SIGNATURE_ISP 0x1B
64 #define CMD_READ_OSCCAL_ISP 0x1C
65 #define CMD_SPI_MULTI 0x1D
66
67 #define STATUS_CMD_OK 0x00
68 #define STATUS_CMD_TOUT 0x80
69 #define STATUS_RDY_BSY_TOUT 0x81
70 #define STATUS_SET_PARAM_MISSING 0x82
71 #define STATUS_CMD_FAILED 0xC0
72 #define STATUS_CMD_UNKNOWN 0xC9
73 #define STATUS_ISP_READY 0x00
74 #define STATUS_CONN_FAIL_MOSI 0x01
75 #define STATUS_CONN_FAIL_RST 0x02
76 #define STATUS_CONN_FAIL_SCK 0x04
77 #define STATUS_TGT_NOT_DETECTED 0x10
78 #define STATUS_TGT_REVERSE_INSERTED 0x20
79
80 #define PARAM_BUILD_NUMBER_LOW 0x80
81 #define PARAM_BUILD_NUMBER_HIGH 0x81
82 #define PARAM_HW_VER 0x90
83 #define PARAM_SW_MAJOR 0x91
84 #define PARAM_SW_MINOR 0x92
85 #define PARAM_VTARGET 0x94
86 #define PARAM_SCK_DURATION 0x98
87 #define PARAM_RESET_POLARITY 0x9E
88 #define PARAM_STATUS_TGT_CONN 0xA1
89 #define PARAM_DISCHARGEDELAY 0xA4
90
91 /* Function Prototypes: */
92 void V2Protocol_ProcessCommand(void);
93
94 #endif
95