esp32_BNO08x/include/report/BNO08xRptARVRStabilizedGame...

20 lines
586 B
C++
Raw Normal View History

2024-11-23 01:05:03 +00:00
#pragma once
#include "BNO08xRptRVGeneric.hpp"
2024-11-23 01:05:03 +00:00
/**
* @brief Class to represent ARVR stabilized rotation vector reports. (See Ref. Manual 6.5.43)
*/
class BNO08xRptARVRStabilizedGameRV : public BNO08xRptRVGeneric
{
public:
BNO08xRptARVRStabilizedGameRV(BNO08x* imu, uint8_t report_ID, uint32_t period_us, uint32_t rpt_bit)
: BNO08xRptRVGeneric(imu, report_ID, period_us, rpt_bit)
{
}
private:
void update_data(sh2_SensorValue_t* sensor_val) override;
static const constexpr char* TAG = "BNO08xRptARVRStabilizedGameRV";
};