esp32_BNO08x 1.4
C++ BNO08x IMU driver component for esp-idf.
BNO08xRptIGyroRV.hpp
Go to the documentation of this file.
1
6#pragma once
7
9
16{
17 public:
20 {
21 }
22
23 void get(bno08x_quat_t& quat, bno08x_ang_vel_t& vel);
25
26 private:
27 void update_data(sh2_SensorValue_t* sensor_val) override;
28 bno08x_ang_vel_t data_vel;
29 static const constexpr char* TAG = "BNO08xRptIGyroRV";
30};
BNO08xPrivateTypes::bno08x_sync_ctx_t * sync_ctx
Definition: BNO08xRpt.hpp:42
uint8_t ID
Report ID, ex. SH2_ACCELERATION.
Definition: BNO08xRpt.hpp:39
EventBits_t rpt_bit
Respective enable and data bit for report in evt_grp_rpt_en and evt_grp_rpt_data.
Definition: BNO08xRpt.hpp:40
Class to represent integrated gyro rotation vector reports. (See Ref. Manual 6.5.44)
Definition: BNO08xRptIGyroRV.hpp:16
BNO08xRptIGyroRV(uint8_t ID, EventBits_t rpt_bit, BNO08xPrivateTypes::bno08x_sync_ctx_t *sync_ctx)
Definition: BNO08xRptIGyroRV.hpp:18
bno08x_ang_vel_t get_vel()
Grabs most recent gyro integrated rotation vector angular velocity data, units are in rad/s.
Definition: BNO08xRptIGyroRV.cpp:49
void get(bno08x_quat_t &quat, bno08x_ang_vel_t &vel)
Grabs most recent gyro integrated rotation vector data.
Definition: BNO08xRptIGyroRV.cpp:35
Class to represent rotation vector reports.
Definition: BNO08xRptRVGeneric.hpp:16
Holds context used to synchronize tasks and callback execution.
Definition: BNO08xPrivateTypes.hpp:57
Struct to represent angular velocity (units in rad/s)
Definition: BNO08xGlobalTypes.hpp:572
Struct to represent unit quaternion.
Definition: BNO08xGlobalTypes.hpp:473