Alpha version of the code. Errors are still present in the code and the objects and dataused are picked as a test. Documentation of the code will be also added later.
This commit is contained in:
@@ -12,7 +12,6 @@
|
||||
|
||||
namespace datapool {
|
||||
enum opus_variable_id {
|
||||
NO_PARAMETER = 0x0, //This PID is used to denote a non-existing param in the OBSW (NOPARAME), Size: 1
|
||||
DUMMY1 = 0x100000,
|
||||
DUMMY2 = 0x100001,
|
||||
DUMMY3 = 0x100002,
|
||||
@@ -21,10 +20,54 @@ namespace datapool {
|
||||
DUMMY6 = 0x100005,//TEST VAR
|
||||
LIMIT_VAR = 0x100006,
|
||||
TIME_STAMPER = 0x100007,
|
||||
//Centroid_PoolId = 0x100008,
|
||||
//CentroidTime_PoolId = 0x100009
|
||||
|
||||
/* The IDs of the variables of the Arduino serial output are here defined.*/
|
||||
|
||||
//TODO: add your unique datapool Ids here
|
||||
/*
|
||||
Temperature.start_string = 0x100008,
|
||||
Temperature.Typ = 0x100009,
|
||||
Temperature.SPCChNumber = 0x100010,
|
||||
Temperature.Value_Cnt = 0x100011,
|
||||
Temperature.temperature = 0x100012,
|
||||
Temperature.Timestamp = 0x100013,
|
||||
Temperature.end_string = 0x100014,
|
||||
|
||||
Environmental.start_string = 0x100015,
|
||||
Environmental.Typ = 0x100016,
|
||||
Environmental.SPCChNumber = 0x100017,
|
||||
Environmental.Value_Cnt = 0x100018,
|
||||
Environmental.Value = 0x100019,
|
||||
Environmental.Timestamp = 0x100020,
|
||||
Environmental.end_string = 0x100021,
|
||||
|
||||
Accelerometer.start_string = 0x100022,
|
||||
Accelerometer.Typ = 0x100023,
|
||||
Accelerometer.SPCChNumber = 0x100024,
|
||||
Accelerometer.Value_Cnt = 0x100025,
|
||||
Accelerometer.Value = 0x100026,
|
||||
Accelerometer.Timestamp = 0x100027,
|
||||
Accelerometer.end_string = 0x100028,
|
||||
*/
|
||||
|
||||
Temperature_value = 0x100008,
|
||||
Temperature_Timestamp = 0x100009,
|
||||
Environmental_value = 0x100010,
|
||||
Environmental_Timestamp = 0x100011,
|
||||
Accelerometer_value = 0x100012,
|
||||
Accelerometer_Timestamp = 0x100013,
|
||||
|
||||
TEMP_SENSOR_CH1 = 0x100014,
|
||||
TEMP_SENSOR_CH2 = 0x100015,
|
||||
|
||||
//Temp_COMPONENT_1 = 0x100098,
|
||||
TargetState_COMPONENT_1 = 0x100017,
|
||||
CurrentState_COMPONENT_1 = 0x100018,
|
||||
HeaterRequest_COMPONENT_1 = 0x100019,
|
||||
//Temp_COMPONENT_2 = 0x100099,
|
||||
TargetState_COMPONENT_2 = 0x100021,
|
||||
CurrentState_COMPONENT_2 = 0x100022,
|
||||
HeaterRequest_COMPONENT_2 = 0x100023
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user