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:
john30
2014-12-13 12:01:14 +01:00
parent cda96e6e3b
commit 169c6a9460
5 changed files with 114 additions and 116 deletions
+1 -1
View File
@@ -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" };
+1 -1
View File
@@ -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 */
};