switched to read/write instead of get/set and added force option to read (automatically picks up updated value if available), nicer response messages for BaseLoop, renamed area cyc to upd
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
using namespace std;
|
||||
|
||||
/** static char array with logging area names */
|
||||
static const char* AreaNames[Size_of_Areas] = { "bas", "net", "bus", "cyc" };
|
||||
static const char* AreaNames[Size_of_Areas] = { "bas", "net", "bus", "upd" };
|
||||
|
||||
/** static char array with logging level names */
|
||||
static const char* LevelNames[Size_of_Level] = { "error", "event", "trace", "debug" };
|
||||
|
||||
@@ -37,7 +37,7 @@ enum AreasType {
|
||||
bas=1, /*!< basis */
|
||||
net=2, /*!< network */
|
||||
bus=4, /*!< ebus */
|
||||
cyc=8, /*!< cycle */
|
||||
upd=8, /*!< updates found while listening to the bus */
|
||||
all=15, /*!< type for all subsystems */
|
||||
Size_of_Areas=4 /*!< number of possible areas */
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user