testArduino/bsp_linux/fsfwconfig/datapool/dataPoolInit.h

35 lines
857 B
C++

/*
* dataPoolInit.h
*
* brief: Initialization function for all variables in the data pool.
*/
#ifndef DATAPOOLINIT_H_
#define DATAPOOLINIT_H_
#include <fsfw/datapool/DataPool.h>
namespace datapool {
enum opus_variable_id {
// The IDs of the variables of the DH and CONTROLLER are here defined.
Temperature_value = 0x100001,
Temperature_Timestamp = 0x100002,
TempValidity_SENSOR_CH1 = 0x10003,
TempValidity_SENSOR_CH2 = 0x10004,
Temperature_COMPONENT_1 = 0x10005,
TargetState_COMPONENT_1 = 0x10006,
CurrentState_COMPONENT_1 = 0x100007,
HeaterRequest_COMPONENT_1 = 0x100008,
Temperature_COMPONENT_2 = 0x10009,
TargetState_COMPONENT_2 = 0x100010,
CurrentState_COMPONENT_2 = 0x100011,
HeaterRequest_COMPONENT_2 = 0x100012
};
}
void dataPoolInit( std::map<uint32_t, PoolEntryIF*>* pool_map );
#endif /* DATAPOOLINIT_H_ */