10 #ifndef logger_types_ttmmod_params_hpp 11 #define logger_types_ttmmod_params_hpp 13 #include "generated/ttmmod_params_generated.h" 39 const double & modFreq,
40 const double & modRad,
41 const double & offset1,
42 const double & offset2
45 auto fp = CreateTtmmod_params_fb(
builder, modState, modFreq, modRad, offset1, offset2);
57 static_cast<void>(len);
59 auto fbs = GetTtmmod_params_fb(msgBuffer);
62 std::string msg =
"UNK";
64 if(fbs->modState() == 0) msg =
"OFF";
65 if(fbs->modState() == 1) msg =
"REST";
66 if(fbs->modState() == 2) msg =
"INT";
67 if(fbs->modState() == 3) msg =
"SET";
68 if(fbs->modState() == 4)
73 msg += std::to_string(fbs->modFreq()) +
" Hz";
76 msg += std::to_string(fbs->modRad()) +
" lam/D";
89 #endif //logger_types_ttmmod_params_hpp static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
Log entry recording the build-time git state.
static const flatlogs::logPrioT defaultLevel
The default level.
The MagAO-X logger flatbuffer log base type.
static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatte for human consumption.
The type of the input message.
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
static const flatlogs::eventCodeT eventCode
The event code.
flatbuffers::FlatBufferBuilder builder
msgLen2T msgLenT
The type used to refer to the message length, regardless of length.
Message type for resolving log messages with a f.b. builder.
uint16_t eventCodeT
The type of an event code (16-bit unsigned int).
messageT(const uint8_t &modState, const double &modFreq, const double &modRad, const double &offset1, const double &offset2)
Construct from components.