Refactoring and other updates

Dependencies:   BLE_API mbed nRF51822

Fork of nRF51822_SimpleChat by Cristi Stoican

CmdEnums.hpp

Committer:
carbune92
Date:
2017-05-10
Revision:
7:806b08205b25
Parent:
3:b6e4e5529a52

File content as of revision 7:806b08205b25:

#ifndef CMDENUMS_H
#define CMDENUMS_H

enum SysObj {
	CONTROLLER = 0x01,
	MONITOR	= 0x02
};

enum SysObjTypes {
	P = 0x11,
	PI = 0x12,
	PID = 0x13,
	RST = 0x14
};

enum Actions {
	CREATE = 0x20,
	START = 0x21,
	UPDATE = 0x22,
	STOP = 0x23
};

enum Separators {
	LT = 0x3c,
	GT = 0x3e,
	USCORE = 0x5f
};

#endif