forked from alexforencich/xboot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
protocol.h
112 lines (94 loc) · 4.3 KB
/
protocol.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/************************************************************************/
/* XBoot Extensible AVR Bootloader */
/* */
/* XBoot Protocol Definition */
/* */
/* protocol.h */
/* */
/* Alex Forencich <[email protected]> */
/* */
/* Copyright (c) 2010 Alex Forencich */
/* */
/* Permission is hereby granted, free of charge, to any person */
/* obtaining a copy of this software and associated documentation */
/* files(the "Software"), to deal in the Software without restriction, */
/* including without limitation the rights to use, copy, modify, merge, */
/* publish, distribute, sublicense, and/or sell copies of the Software, */
/* and to permit persons to whom the Software is furnished to do so, */
/* subject to the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND */
/* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS */
/* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN */
/* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN */
/* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE */
/* SOFTWARE. */
/* */
/************************************************************************/
#ifndef __PROTOCOL_H
#define __PROTOCOL_H
#include "xboot.h"
// Defines
// General Commands
#define CMD_SYNC '\x1b'
// Informational Commands
#define CMD_CHECK_AUTOINCREMENT 'a'
#define CMD_CHECK_BLOCK_SUPPORT 'b'
#define CMD_PROGRAMMER_TYPE 'p'
#define CMD_DEVICE_CODE 't'
#define CMD_PROGRAM_ID 'S'
#define CMD_VERSION 'V'
#define CMD_READ_SIGNATURE 's'
// Addressing
#define CMD_SET_ADDRESS 'A'
#define CMD_SET_EXT_ADDRESS 'H'
// Erase
#define CMD_CHIP_ERASE 'e'
// Block Access
#define CMD_BLOCK_LOAD 'B'
#define CMD_BLOCK_READ 'g'
// Byte Access
#define CMD_READ_BYTE 'R'
#define CMD_WRITE_LOW_BYTE 'c'
#define CMD_WRITE_HIGH_BYTE 'C'
#define CMD_WRITE_PAGE 'm'
#define CMD_WRITE_EEPROM_BYTE 'D'
#define CMD_READ_EEPROM_BYTE 'd'
// Lock and Fuse Bits
#define CMD_WRITE_LOCK_BITS 'l'
#define CMD_READ_LOCK_BITS 'r'
#define CMD_READ_LOW_FUSE_BITS 'F'
#define CMD_READ_HIGH_FUSE_BITS 'N'
#define CMD_READ_EXT_FUSE_BITS 'Q'
// Bootloader Commands
#define CMD_ENTER_PROG_MODE 'P'
#define CMD_LEAVE_PROG_MODE 'L'
#define CMD_EXIT_BOOTLOADER 'E'
#define CMD_SET_LED 'x'
#define CMD_CLEAR_LED 'y'
#define CMD_SET_TYPE 'T'
#define CMD_CRC 'h'
// I2C Address Autonegotiation Commands
#define CMD_AUTONEG_START '@'
#define CMD_AUTONEG_DONE '#'
// Memory types for block access
#define MEM_EEPROM 'E'
#define MEM_FLASH 'F'
#define MEM_USERSIG 'U'
#define MEM_PRODSIG 'P'
// Sections for CRC checks
#define SECTION_FLASH 'F'
#define SECTION_APPLICATION 'A'
#define SECTION_BOOT 'B'
#define SECTION_APP 'a'
#define SECTION_APP_TEMP 't'
// Command Responses
#define REPLY_ACK '\r'
#define REPLY_YES 'Y'
#define REPLY_ERROR '?'
#endif // __PROTOCOL_H