Initial commit
[remote/remote-mci.git] / protocols / motecontrol / localconstants.h
bloba1ea1832b7f72dd88667b5be093cebadf883da4a
1 #ifndef LOCALCONSTANTS_H_
2 #define LOCALCONSTANTS_H_
4 namespace remote { namespace protocols { namespace motecontrol {
6 enum
8 // operation results
9 SUCCESS,
10 FAILURE,
11 NOT_SUPPORTED
14 enum
16 MOTE_STATUS_UNKNOWN, // the status of the mote could not be determined
17 MOTE_UNAVAILABLE, // mote is unreachable
18 MOTE_STOPPED, // mote has been stopped
19 MOTE_RUNNING, // mote is running
20 MOTE_PROGRAMMING // Mote is being programmed
23 }}}
25 #endif /*LOCALCONSTANTS_H_*/