esp32_BNO08x 1.4
C++ BNO08x IMU driver component for esp-idf.
BNO08xRptRVGeomag.hpp
Go to the documentation of this file.
1
6#pragma once
7
9
16{
17 public:
20 {
21 }
22
23 bool tare(bool x = true, bool y = true, bool z = true);
24 bool tare_persist();
25 void tare_clear();
26
27 private:
28 void update_data(sh2_SensorValue_t* sensor_val) override;
29 static const constexpr char* TAG = "BNO08xRptRVGeomag";
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 rotation vector reports.
Definition: BNO08xRptRVGeneric.hpp:16
Class to represent geomagnetic rotation vector reports. (See Ref. Manual 6.5.20)
Definition: BNO08xRptRVGeomag.hpp:16
void tare_clear()
Clears most recent tare operation.
Definition: BNO08xRptRVGeomag.cpp:64
BNO08xRptRVGeomag(uint8_t ID, EventBits_t rpt_bit, BNO08xPrivateTypes::bno08x_sync_ctx_t *sync_ctx)
Definition: BNO08xRptRVGeomag.hpp:18
bool tare_persist()
Saves most recent tare operation to BNO08x internal flash, such that it persists on reset.
Definition: BNO08xRptRVGeomag.cpp:45
bool tare(bool x=true, bool y=true, bool z=true)
Tares geomagnetic rotation vector.
Definition: BNO08xRptRVGeomag.cpp:35
Holds context used to synchronize tasks and callback execution.
Definition: BNO08xPrivateTypes.hpp:57