-
Notifications
You must be signed in to change notification settings - Fork 0
/
hostcmdset.h
36 lines (22 loc) · 1009 Bytes
/
hostcmdset.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
#ifndef HOSTCMDSET_H
#define HOSTCMDSET_H
/******************************************************************************
* SYNTAX FOR COMMANDS
******************************************************************************/
// character that separates the command name from its arguments
#define ARGSEP ","
/******************************************************************************
* SYNTAX FOR PROGRAM FILES
******************************************************************************/
// start of program file
#define FILESTART "\x30\x30\x31\x31\x31\x31\x31\x31\x31\x31\x30"
// end of program file
#define FILEEND "\x25\x1a"
// command separator in program files
#define CMDSEP "\n"
/******************************************************************************
* SYNTAX FOR TERMINAL
******************************************************************************/
// end of command in terminal mode
#define CMDEND "\r" // command separator (end of command)
#endif