#pragma once #include "BNO08xRpt.hpp" /** * @brief Class to represent uncalibrated gyro reports. (See Ref. Manual 6.5.14) */ class BNO08xRptUncalGyro : public BNO08xRpt { public: BNO08xRptUncalGyro(BNO08x* imu, uint8_t report_ID, uint32_t period_us, uint32_t rpt_bit) : BNO08xRpt(imu, report_ID, period_us, rpt_bit) { } void get(bno08x_gyro_t& vel, bno08x_gyro_bias_t& bias); bno08x_gyro_t get_vel(); bno08x_gyro_bias_t get_bias(); private: void update_data(sh2_SensorValue_t* sensor_val) override; bno08x_gyro_t data; bno08x_gyro_bias_t bias_data; static const constexpr char* TAG = "BNO08xRptUncalGyro"; };