29struct fmt::formatter<blunux::pmu::PioneerThrustersSetpoint> {
36 template <
typename ParseContext>
38 constexpr auto parse(ParseContext& ctx) {
49 template <
typename FormatContext>
51 FormatContext& ctx)
const {
52 return fmt::format_to(ctx.out(),
"right: {} left: {} lat: {} vert: {}",
64inline std::ostream& operator<<(std::ostream& os,
66 return os << fmt::format(
"{}", data);
Structure representing setpoint values for thrusters.
Definition PioneerThrustersSetpoint.hpp:15
int16_t vert
Set point for the vertical thruster [-1000..1000].
Definition PioneerThrustersSetpoint.hpp:19
int16_t right
Set point for the right thruster [-1000..1000].
Definition PioneerThrustersSetpoint.hpp:16
int16_t left
Set point for the left thruster [-1000..1000].
Definition PioneerThrustersSetpoint.hpp:17
int16_t lat
Set point for the lateral thruster [-1000..1000].
Definition PioneerThrustersSetpoint.hpp:18