BOOTLOADER
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
ascii_code.h
Go to the documentation of this file.
1 #ifndef ASCIICODE_H
2 #define ASCIICODE_H
3 
4 #define ASCII_NUL 0x00
5 #define ASCII_SOH 0x01
6 #define ASCII_STX 0x02
7 #define ASCII_ETX 0x03
8 #define ASCII_EOT 0x04
9 #define ASCII_ENQ 0x05
10 #define ASCII_ACK 0x06
11 #define ASCII_BEL 0x07
12 #define ASCII_BS 0x08
13 #define ASCII_HT 0x09
14 #define ASCII_LF 0x0a
15 #define ASCII_VT 0x0b
16 #define ASCII_FF 0x0c
17 #define ASCII_CR 0x0d
18 #define ASCII_SO 0x0e
19 #define ASCII_SI 0x0f
20 #define ASCII_DLE 0x10
21 #define ASCII_DC1 0x11
22 #define ASCII_DC2 0x12
23 #define ASCII_DC3 0x13
24 #define ASCII_DC4 0x14
25 #define ASCII_NAK 0x15
26 #define ASCII_SYN 0x26
27 #define ASCII_ETB 0x17
28 #define ASCII_CAN 0x18
29 #define ASCII_EM 0x19
30 #define ASCII_SUB 0x1a
31 #define ASCII_ESC 0x1b
32 #define ASCII_FS 0x1c
33 #define ASCII_GS 0x1d
34 #define ASCII_RS 0x1e
35 #define ASCII_US 0x1f
36 #define ASCII_SP 0x20
37 #define ASCII_DEL 0x7f
38 //#define ASCII_SQUARE 0x80
39 
40 #define KEY_HOME 0x48
41 #define KEY_END 0x4b
42 #define KEY_PAGE_UP 0x4d
43 #define KEY_PAGE_DOWN 0x32
44 #define KEY_PAGE_DOWN2 0x4a
45 #define KEY_LEFT_ARROW 0x44
46 #define KEY_RIGHT_ARROW 0x43
47 #define KEY_UP_ARROW 0x41
48 #define KEY_DOWN_ARROW 0x42
49 
50 #endif