Cristi Stoican / Mbed 2 deprecated Migration

Dependencies:   BLE_API mbed nRF51822

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CmdEnums.hpp Source File

CmdEnums.hpp

00001 #ifndef CMDENUMS_H
00002 #define CMDENUMS_H
00003 
00004 enum SysObj {
00005     CONTROLLER = 0x01,
00006     MONITOR = 0x02
00007 };
00008 
00009 enum SysObjTypes {
00010     P = 0x11,
00011     PI = 0x12,
00012     PID = 0x13,
00013     RST = 0x14
00014 };
00015 
00016 enum Actions {
00017     CREATE = 0x20,
00018     START = 0x21,
00019     UPDATE = 0x22,
00020     STOP = 0x23
00021 };
00022 
00023 enum Separators {
00024     LT = 0x3c,
00025     GT = 0x3e,
00026     USCORE = 0x5f
00027 };
00028 
00029 #endif