30 lines
760 B
C++
30 lines
760 B
C++
#ifndef FEEDBACK_HANDLER_CONFIG_H
|
|
#define FEEDBACK_HANDLER_CONFIG_H
|
|
|
|
#include <string>
|
|
|
|
namespace FeedbackHandlerConf {
|
|
|
|
const std::string PATH_PREFIX = "/Equipment/";
|
|
const std::string PATH_SUFFIX = "/Variables";
|
|
const std::string OUTPUT_VARNAME = "Measured";
|
|
const std::string INPUT_VARNAME = "Demand";
|
|
|
|
enum class RegisterIndex {
|
|
PRESSURE_SET_POINT = 0,
|
|
SP = 1,
|
|
TEMPERATURE = 2,
|
|
POWER = 3,
|
|
AVERAGE_POWER = 4,
|
|
PRESSURE = 5,
|
|
MINIMUM_PRESSURE = 8,
|
|
MAXIMUM_PRESSURE = 9,
|
|
CONSTANTE_1 = 10,
|
|
CONSTANTE_2 = 11,
|
|
MAXIMUM_REGISTRY_INDEX =
|
|
11 // Used as a safety guard for undersize array. Put this enum member
|
|
// always as the same value as the highest member
|
|
};
|
|
} // namespace FeedbackHandlerConf
|
|
|
|
#endif |