10 #ifndef logger_types_fxngen_params_hpp 11 #define logger_types_fxngen_params_hpp 39 const double & C1freq,
41 const double & C1ofst,
42 const double & C1phse,
43 const std::string & C1wvtp,
44 const uint8_t & C2outp,
45 const double & C2freq,
47 const double & C2ofst,
48 const double & C2phse,
49 const std::string & C2wvtp
52 uint8_t _C1wvtp = 3, _C2wvtp = 3;
55 if(C1wvtp ==
"DC") _C1wvtp = 0;
56 else if(C1wvtp ==
"SINE") _C1wvtp = 1;
58 if(C2wvtp ==
"DC") _C2wvtp = 0;
59 else if(C2wvtp ==
"SINE") _C2wvtp = 1;
62 auto fp =
CreateFxngen_params_fb(
builder, C1outp, C1freq, C1vpp, C1ofst, C1phse, _C1wvtp, C2outp, C2freq, C2vpp, C2ofst, C2phse, _C2wvtp);
74 static_cast<void>(len);
78 std::string msg =
"Ch 1: ";
80 if(fbs->C1wvtp() == 0) msg +=
"DC ";
81 else if(fbs->C1wvtp() == 1) msg +=
"SINE ";
84 if(fbs->C1outp() == 0) msg +=
"OFF ";
85 else if(fbs->C1outp() == 1) msg +=
"ON ";
88 msg += std::to_string(fbs->C1freq()) +
" Hz ";
89 msg += std::to_string(fbs->C1vpp()) +
" Vp2p ";
90 msg += std::to_string(fbs->C1ofst()) +
" V ";
91 msg += std::to_string(fbs->C1phse()) +
" deg ";
95 if(fbs->C2wvtp() == 0) msg +=
"DC ";
96 else if(fbs->C2wvtp() == 1) msg +=
"SINE ";
99 if(fbs->C2outp() == 0) msg +=
"OFF ";
100 else if(fbs->C2outp() == 1) msg +=
"ON ";
103 msg += std::to_string(fbs->C2freq()) +
" Hz ";
104 msg += std::to_string(fbs->C2vpp()) +
" Vp2p ";
105 msg += std::to_string(fbs->C2ofst()) +
" V ";
106 msg += std::to_string(fbs->C2phse()) +
" deg ";
118 #endif //logger_types_fxngen_params_hpp static std::string msgString(void *msgBuffer, flatlogs::msgLenT len)
Get the message formatte for human consumption.
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
The type of the input message.
static const flatlogs::eventCodeT eventCode
The event code.
flatbuffers::Offset< Fxngen_params_fb > CreateFxngen_params_fb(flatbuffers::FlatBufferBuilder &_fbb, uint8_t C1outp=0, double C1freq=0.0, double C1vpp=0.0, double C1ofst=0.0, double C1phse=0.0, uint8_t C1wvtp=0, uint8_t C2outp=0, double C2freq=0.0, double C2vpp=0.0, double C2ofst=0.0, double C2phse=0.0, uint8_t C2wvtp=0)
The MagAO-X logger flatbuffer log base type.
Base class for logs consisting of a flatbuffer message.
int8_t logPrioT
The type of the log priority code.
Log entry recording the build-time git state.
static constexpr flatlogs::eventCodeT FXNGEN_PARAMS
messageT(const uint8_t &C1outp, const double &C1freq, const double &C1vpp, const double &C1ofst, const double &C1phse, const std::string &C1wvtp, const uint8_t &C2outp, const double &C2freq, const double &C2vpp, const double &C2ofst, const double &C2phse, const std::string &C2wvtp)
Construct from components.
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).
const MagAOX::logger::Fxngen_params_fb * GetFxngen_params_fb(const void *buf)
static const flatlogs::logPrioT defaultLevel
The default level.