esp32_BNO08x 1.3
C++ BNO08x IMU driver component for esp-idf.
Loading...
Searching...
No Matches
BNO08x.hpp
Go to the documentation of this file.
1
6#pragma once
7
8// etl includes
9#include <etl/vector.h>
10#include <etl/variant.h>
11#include <etl/map.h>
12
13// esp-idf includes
14#include <driver/gpio.h>
15#include <driver/spi_common.h>
16#include <driver/spi_master.h>
17#include <freertos/FreeRTOS.h>
18#include <freertos/task.h>
19#include <freertos/event_groups.h>
20#include <freertos/queue.h>
21// in-house includes
22#include "BNO08xGlobalTypes.hpp"
24#include "BNO08xSH2HAL.hpp"
25#include "BNO08xReports.hpp"
26
32class BNO08x
33{
34 public:
36 ~BNO08x();
37
38 bool initialize();
39 bool hard_reset();
40 bool soft_reset();
42
43 bool on();
44 bool sleep();
45
46 bool calibration_start(uint32_t period_us);
47 bool calibration_end(sh2_CalStatus_t& status);
48
55
56 bool get_frs(uint16_t frs_ID, uint32_t (&data)[16], uint16_t& rx_data_sz);
57 sh2_ProductIds_t get_product_IDs();
58
59 bool data_available();
60 bool register_cb(std::function<void(void)> cb_fxn);
61 bool register_cb(std::function<void(uint8_t report_ID)> cb_fxn);
62
63 void print_product_ids();
64
65 // enum helper fxns
66 static const char* activity_to_str(BNO08xActivity activity);
67 static const char* stability_to_str(BNO08xStability stability);
68 static const char* accuracy_to_str(BNO08xAccuracy accuracy);
69
71 typedef struct bno08x_reports_t
72 {
94
96 : accelerometer(SH2_ACCELEROMETER, BNO08xPrivateTypes::EVT_GRP_RPT_ACCELEROMETER_BIT, sync_ctx)
98 SH2_LINEAR_ACCELERATION, BNO08xPrivateTypes::EVT_GRP_RPT_LINEAR_ACCELEROMETER_BIT, sync_ctx)
99 , gravity(SH2_GRAVITY, BNO08xPrivateTypes::EVT_GRP_RPT_GRAVITY_BIT, sync_ctx)
101 SH2_MAGNETIC_FIELD_CALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_CAL_MAGNETOMETER_BIT, sync_ctx)
103 SH2_MAGNETIC_FIELD_UNCALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_UNCAL_MAGNETOMETER_BIT, sync_ctx)
104 , cal_gyro(SH2_GYROSCOPE_CALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_CAL_GYRO_BIT, sync_ctx)
105 , uncal_gyro(SH2_GYROSCOPE_UNCALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_UNCAL_GYRO_BIT, sync_ctx)
106 , rv(SH2_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_RV_BIT, sync_ctx)
107 , rv_game(SH2_GAME_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_RV_GAME_BIT, sync_ctx)
108 , rv_ARVR_stabilized(SH2_ARVR_STABILIZED_RV, BNO08xPrivateTypes::EVT_GRP_RPT_RV_ARVR_S_BIT, sync_ctx)
110 SH2_ARVR_STABILIZED_GRV, BNO08xPrivateTypes::EVT_GRP_RPT_RV_ARVR_S_GAME_BIT, sync_ctx)
111 , rv_gyro_integrated(SH2_GYRO_INTEGRATED_RV, BNO08xPrivateTypes::EVT_GRP_RPT_GYRO_INTEGRATED_RV_BIT, sync_ctx)
112 , rv_geomagnetic(SH2_GEOMAGNETIC_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_GEOMAG_RV_BIT, sync_ctx)
113 , raw_gyro(SH2_RAW_GYROSCOPE, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_GYRO_BIT, sync_ctx)
114 , raw_accelerometer(SH2_RAW_ACCELEROMETER, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_ACCELEROMETER_BIT, sync_ctx)
115 , raw_magnetometer(SH2_RAW_MAGNETOMETER, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_MAGNETOMETER_BIT, sync_ctx)
116 , step_counter(SH2_STEP_COUNTER, BNO08xPrivateTypes::EVT_GRP_RPT_STEP_COUNTER_BIT, sync_ctx)
118 SH2_PERSONAL_ACTIVITY_CLASSIFIER, BNO08xPrivateTypes::EVT_GRP_RPT_ACTIVITY_CLASSIFIER_BIT, sync_ctx)
120 SH2_STABILITY_CLASSIFIER, BNO08xPrivateTypes::EVT_GRP_RPT_STABILITY_CLASSIFIER_BIT, sync_ctx)
121 , shake_detector(SH2_SHAKE_DETECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_SHAKE_DETECTOR_BIT, sync_ctx)
122 , tap_detector(SH2_TAP_DETECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_TAP_DETECTOR_BIT, sync_ctx)
123 {
124 }
126
128
129 private:
130 // data processing task
131 static const constexpr configSTACK_DEPTH_TYPE DATA_PROC_TASK_SZ =
132 CONFIG_ESP32_BNO08X_DATA_PROC_TASK_SZ;
133 TaskHandle_t data_proc_task_hdl;
134 static void data_proc_task_trampoline(void* arg);
135 void data_proc_task();
136
137 // sh2 service task
138 static const constexpr configSTACK_DEPTH_TYPE SH2_HAL_SERVICE_TASK_SZ =
139 CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_SZ;
141 static void sh2_HAL_service_task_trampoline(void* arg);
143
144 // callback task
145 static const constexpr configSTACK_DEPTH_TYPE CB_TASK_SZ =
146 CONFIG_ESP32_BNO08X_CB_TASK_SZ;
147 TaskHandle_t cb_task_hdl;
148 static void cb_task_trampoline(void* arg);
149 void cb_task();
150
151 SemaphoreHandle_t sem_kill_tasks;
152
153 void lock_sh2_HAL();
154 void unlock_sh2_HAL();
155 void lock_user_data();
156 void unlock_user_data();
157
158 void handle_sensor_report(sh2_SensorValue_t* sensor_val);
159 void handle_cb(uint8_t rpt_ID, BNO08xCbGeneric* cb_entry);
160
161 esp_err_t init_config_args();
162 esp_err_t init_gpio();
163 esp_err_t init_gpio_inputs();
164 esp_err_t init_gpio_outputs();
165 esp_err_t init_hint_isr();
166 esp_err_t init_spi();
167 esp_err_t init_tasks();
168 esp_err_t init_sh2_HAL();
169
170 esp_err_t deinit_gpio();
171 esp_err_t deinit_gpio_inputs();
172 esp_err_t deinit_gpio_outputs();
173 esp_err_t deinit_hint_isr();
174 esp_err_t deinit_spi();
175 esp_err_t deinit_tasks();
176 esp_err_t deinit_sh2_HAL();
177
178 esp_err_t wait_for_hint();
179 esp_err_t wait_for_reset();
180
181 void toggle_reset();
182
183 esp_err_t re_enable_reports();
184
185 sh2_Hal_t sh2_HAL;
186
187 QueueHandle_t
189
190 QueueHandle_t queue_cb_report_id;
191
193 spi_bus_config_t bus_config{};
194 spi_device_interface_config_t imu_spi_config{};
195 spi_device_handle_t spi_hdl{};
196 spi_transaction_t spi_transaction{};
200 sh2_ProductIds_t product_IDs;
201
202 // clang-format off
203 etl::map<uint8_t, BNO08xRpt*, TOTAL_RPT_COUNT, etl::less<uint8_t>> usr_reports =
204 {
205 {SH2_ACCELEROMETER, &rpt.accelerometer},
206 {SH2_LINEAR_ACCELERATION, &rpt.linear_accelerometer},
207 {SH2_GRAVITY, &rpt.gravity},
208 {SH2_MAGNETIC_FIELD_CALIBRATED, &rpt.cal_magnetometer},
209 {SH2_MAGNETIC_FIELD_UNCALIBRATED, &rpt.uncal_magnetometer},
210 {SH2_GYROSCOPE_CALIBRATED, &rpt.cal_gyro},
211 {SH2_GYROSCOPE_UNCALIBRATED, &rpt.uncal_gyro},
212 {SH2_ROTATION_VECTOR, &rpt.rv},
213 {SH2_GAME_ROTATION_VECTOR, &rpt.rv_game},
214 {SH2_ARVR_STABILIZED_RV, &rpt.rv_ARVR_stabilized},
215 {SH2_ARVR_STABILIZED_GRV, &rpt.rv_ARVR_stabilized_game},
216 {SH2_GYRO_INTEGRATED_RV, &rpt.rv_gyro_integrated},
217 {SH2_GEOMAGNETIC_ROTATION_VECTOR, &rpt.rv_geomagnetic},
218 {SH2_RAW_GYROSCOPE, &rpt.raw_gyro},
219 {SH2_RAW_ACCELEROMETER, &rpt.raw_accelerometer},
220 {SH2_RAW_MAGNETOMETER, &rpt.raw_magnetometer},
221 {SH2_STEP_COUNTER, &rpt.step_counter},
222 {SH2_PERSONAL_ACTIVITY_CLASSIFIER, &rpt.activity_classifier},
223 {SH2_STABILITY_CLASSIFIER, &rpt.stability_classifier},
224 {SH2_SHAKE_DETECTOR, &rpt.shake_detector},
225 {SH2_TAP_DETECTOR, &rpt.tap_detector},
226
227 // not implemented, see include/report for existing implementations to add your own
228 {SH2_PRESSURE, nullptr}, // requires auxilary i2c sensor
229 {SH2_AMBIENT_LIGHT, nullptr}, // requires auxilary i2c sensor
230 {SH2_HUMIDITY, nullptr}, // requires auxilary i2c sensor
231 {SH2_PROXIMITY, nullptr}, // requires auxilary i2c sensor
232 {SH2_TEMPERATURE, nullptr}, // requires auxilary i2c sensor
233 {SH2_HEART_RATE_MONITOR, nullptr}, // requires auxilary i2c sensor
234 {SH2_STEP_DETECTOR, nullptr},
235 {SH2_SIGNIFICANT_MOTION, nullptr},
236 {SH2_FLIP_DETECTOR, nullptr},
237 {SH2_PICKUP_DETECTOR, nullptr},
238 {SH2_STABILITY_DETECTOR, nullptr},
239 {SH2_SLEEP_DETECTOR, nullptr},
240 {SH2_TILT_DETECTOR, nullptr},
241 {SH2_POCKET_DETECTOR, nullptr},
242 {SH2_CIRCLE_DETECTOR, nullptr},
243 {SH2_IZRO_MOTION_REQUEST, nullptr}
244 };
245 // clang-format on
246
247 static void IRAM_ATTR hint_handler(void* arg);
248
249 static const constexpr uint16_t RX_DATA_LENGTH = 300U;
250
251 static const constexpr TickType_t HOST_INT_TIMEOUT_DEFAULT_MS =
252 CONFIG_ESP32_BNO08X_HINT_TIMEOUT_MS /
253 portTICK_PERIOD_MS;
254
255 static const constexpr TickType_t DATA_AVAILABLE_TIMEOUT_MS =
256 CONFIG_ESP32_BNO08X_DATA_AVAILABLE_TIMEOUT_MS /
257 portTICK_PERIOD_MS;
258
259 static const constexpr TickType_t HARD_RESET_DELAY_MS =
260 CONFIG_ESP32_BNO08X_HARD_RESET_DELAY_MS /
261 portTICK_PERIOD_MS;
262
263 static const constexpr uint32_t SCLK_MAX_SPEED = 3000000UL;
264
265 static const constexpr char* TAG = "BNO08x";
266
267 friend class BNO08xSH2HAL;
268 friend class BNO08xTestHelper;
269};
BNO08xStability
BNO08xStability states returned from BNO08x::stability_classifier.get()
Definition BNO08xGlobalTypes.hpp:147
struct bno08x_config_t bno08x_config_t
IMU configuration settings passed into constructor.
BNO08xResetReason
Reason for previous IMU reset (returned by get_reset_reason())
Definition BNO08xGlobalTypes.hpp:94
BNO08xActivity
BNO08xActivity states returned from BNO08x::activity_classifier.get()
Definition BNO08xGlobalTypes.hpp:132
BNO08xAccuracy
Sensor accuracy returned from input reports, corresponds to status bits (see ref. manual 6....
Definition BNO08xGlobalTypes.hpp:106
BNO08xCalSel
Definition BNO08xGlobalTypes.hpp:84
Parent class to represent callback functions as generic type such that all flavors can be invoked by ...
Definition BNO08xCbGeneric.hpp:19
BNO08x IMU driver class.
Definition BNO08x.hpp:33
static const constexpr uint32_t SCLK_MAX_SPEED
Max SPI SCLK speed BNO08x is capable of.
Definition BNO08x.hpp:263
static const char * activity_to_str(BNO08xActivity activity)
Converts a BNO08xActivity enum to string.
Definition BNO08x.cpp:1594
BNO08xPrivateTypes::bno08x_init_status_t init_status
Initialization status of various functionality, used by deconstructor during cleanup,...
Definition BNO08x.hpp:198
static void data_proc_task_trampoline(void *arg)
Static function used to launch data processing task.
Definition BNO08x.cpp:125
void unlock_user_data()
Unlocks user data to allow other tasks to read/modify it.
Definition BNO08x.cpp:309
static const constexpr uint16_t RX_DATA_LENGTH
length buffer containing data received over spi
Definition BNO08x.hpp:249
bool save_dynamic_calibration()
Saves dynamic/motion engine calibration data to BNO08x internal flash immediately....
Definition BNO08x.cpp:1315
esp_err_t deinit_gpio_inputs()
Deinitializes GPIO inputs, called from deconstructor.
Definition BNO08x.cpp:815
BNO08xPrivateTypes::bno08x_sync_ctx_t sync_ctx
Holds context used to synchronize tasks and callback execution.
Definition BNO08x.hpp:199
esp_err_t deinit_spi()
Deinitializes SPI.
Definition BNO08x.cpp:911
bool hard_reset()
Hard resets BNO08x device.
Definition BNO08x.cpp:1026
static const constexpr char * TAG
Class tag used for serial print statements.
Definition BNO08x.hpp:265
void unlock_sh2_HAL()
Unlocks sh2 HAL lib to allow other tasks to call its APIs.
Definition BNO08x.cpp:289
bool data_available()
Polls for new data/report to become available.
Definition BNO08x.cpp:1518
void lock_user_data()
Locks locks user data to only allow the calling task to read/modify it.
Definition BNO08x.cpp:299
static const char * accuracy_to_str(BNO08xAccuracy accuracy)
Definition BNO08x.cpp:1651
spi_device_interface_config_t imu_spi_config
SPI slave device settings.
Definition BNO08x.hpp:194
bool dynamic_calibration_autosave_enable()
Enables the automatic saving of dynamic/ME calibration data to BNO08x internal flash See ref manual 6...
Definition BNO08x.cpp:1281
esp_err_t deinit_gpio()
Deinitializes GPIO, called from deconstructor.
Definition BNO08x.cpp:785
esp_err_t init_config_args()
Initializes required esp-idf SPI data structures with values from user passed bno08x_config_t struct.
Definition BNO08x.cpp:370
etl::map< uint8_t, BNO08xRpt *, TOTAL_RPT_COUNT, etl::less< uint8_t > > usr_reports
Definition BNO08x.hpp:203
esp_err_t init_spi()
Initializes SPI.
Definition BNO08x.cpp:682
bool dynamic_calibration_disable(BNO08xCalSel sensor)
Disables dynamic/motion engine calibration for specified sensor(s), see ref. manual 6....
Definition BNO08x.cpp:1254
void cb_task()
Task responsible for executing callbacks registered with register_cb().
Definition BNO08x.cpp:241
static const constexpr configSTACK_DEPTH_TYPE CB_TASK_SZ
Size of sh2_HAL_service_task() stack in bytes.
Definition BNO08x.hpp:145
esp_err_t wait_for_reset()
Waits for SH2 HAL lib to detect reset or HOST_INT_TIMEOUT_DEFAULT_MS to elapse.
Definition BNO08x.cpp:1443
void toggle_reset()
Toggles reset gpio pin for hard reset of BNO08x device.
Definition BNO08x.cpp:1459
~BNO08x()
BNO08x imu deconstructor.
Definition BNO08x.cpp:39
TaskHandle_t cb_task_hdl
sh2_HAL_service_task() task handle
Definition BNO08x.hpp:147
esp_err_t wait_for_hint()
Waits for HINT pin assertion or HOST_INT_TIMEOUT_DEFAULT_MS to elapse.
Definition BNO08x.cpp:1424
void print_product_ids()
Prints product IDs received at initialization.
Definition BNO08x.cpp:1571
esp_err_t deinit_sh2_HAL()
Deinitializes sh2 HAL.
Definition BNO08x.cpp:1010
bool sleep()
Places BNO08x device in sleep state by sending SLEEP (3) command on "device" channel.
Definition BNO08x.cpp:1175
void sh2_HAL_service_task()
Task responsible for calling shtp_service() when HINT is asserted to dispatch any sh2 HAL lib callbac...
Definition BNO08x.cpp:185
void handle_sensor_report(sh2_SensorValue_t *sensor_val)
Parses receieved report and updates uer data with it.
Definition BNO08x.cpp:319
static void IRAM_ATTR hint_handler(void *arg)
HINT interrupt service routine, handles falling edge of BNO08x HINT pin.
Definition BNO08x.cpp:1677
bool calibration_end(sh2_CalStatus_t &status)
Ends turn-table calibration, see ref. manual 6.4.10.2.
Definition BNO08x.cpp:1217
bool clear_dynamic_calibration()
Clears dynamic/motion engine calibration data and resets BNO08x device. See ref manual 6....
Definition BNO08x.cpp:1332
void handle_cb(uint8_t rpt_ID, BNO08xCbGeneric *cb_entry)
Determines the flavor of a passed callback and executes it appropriately.
Definition BNO08x.cpp:355
static const constexpr configSTACK_DEPTH_TYPE DATA_PROC_TASK_SZ
Size of data_proc_task() stack in bytes.
Definition BNO08x.hpp:131
static void sh2_HAL_service_task_trampoline(void *arg)
Static function used to launch sh2 HAL service task.
Definition BNO08x.cpp:172
QueueHandle_t queue_cb_report_id
Queue to send report ID of most recent report to cb_task()
Definition BNO08x.hpp:190
void lock_sh2_HAL()
Locks sh2 HAL lib to only allow the calling task to call its APIs.
Definition BNO08x.cpp:279
esp_err_t init_gpio_inputs()
Initializes required gpio inputs.
Definition BNO08x.cpp:465
esp_err_t init_tasks()
Initializes data_proc_task.
Definition BNO08x.cpp:612
bool dynamic_calibration_enable(BNO08xCalSel sensor)
Enables dynamic/motion engine calibration for specified sensor(s), see ref. manual 6....
Definition BNO08x.cpp:1235
bool dynamic_calibration_autosave_disable()
Disables the automatic saving of dynamic/ME calibration data to BNO08x internal flash See ref manual ...
Definition BNO08x.cpp:1298
esp_err_t deinit_tasks()
Deinitializes tasks used by BNO08x driver.
Definition BNO08x.cpp:957
BNO08xResetReason get_reset_reason()
Returns reason for previous reset via product ID report.
Definition BNO08x.cpp:1128
bool soft_reset()
Soft resets BNO08x device by sending RESET (1) command on "device" channel.
Definition BNO08x.cpp:1070
spi_bus_config_t bus_config
SPI bus GPIO configuration settings.
Definition BNO08x.hpp:193
esp_err_t deinit_hint_isr()
Deinitializes host interrupt ISR, called from deconstructor.
Definition BNO08x.cpp:873
static const constexpr TickType_t HARD_RESET_DELAY_MS
How long RST pin is held low during hard reset (min 10ns according to datasheet, but should be longer...
Definition BNO08x.hpp:259
esp_err_t init_hint_isr()
Initializes host interrupt ISR.
Definition BNO08x.cpp:563
static const char * stability_to_str(BNO08xStability stability)
Converts a BNO08xStability enum to string.
Definition BNO08x.cpp:1628
sh2_ProductIds_t get_product_IDs()
Returns product ID info sent by IMU at initialization.
Definition BNO08x.cpp:1413
SemaphoreHandle_t sem_kill_tasks
Counting Semaphore to count amount of killed tasks.
Definition BNO08x.hpp:151
bool on()
Places BNO08x device in on state by sending ON (2) command on "device" channel.
Definition BNO08x.cpp:1159
static const constexpr configSTACK_DEPTH_TYPE SH2_HAL_SERVICE_TASK_SZ
Size of sh2_HAL_service_task() stack in bytes.
Definition BNO08x.hpp:138
bool register_cb(std::function< void(void)> cb_fxn)
Registers a callback to execute when new data from a report is received.
Definition BNO08x.cpp:1536
esp_err_t deinit_gpio_outputs()
Deinitializes GPIO outputs, called from deconstructor.
Definition BNO08x.cpp:837
void data_proc_task()
Task responsible for parsing/handling sensor events sent by SH2 HAL and updating data that is returne...
Definition BNO08x.cpp:138
sh2_Hal_t sh2_HAL
sh2 hardware abstraction layer struct for use with sh2 HAL lib.
Definition BNO08x.hpp:185
spi_transaction_t spi_transaction
SPI transaction handle.
Definition BNO08x.hpp:196
esp_err_t re_enable_reports()
Re-enables all reports enabled by user (called when BNO08x reset is detected by sh2 HAL lib).
Definition BNO08x.cpp:1477
sh2_ProductIds_t product_IDs
Product ID info returned IMU at initialization, can be viewed with print_product_ids()
Definition BNO08x.hpp:200
spi_device_handle_t spi_hdl
SPI device handle.
Definition BNO08x.hpp:195
esp_err_t init_gpio_outputs()
Initializes required gpio outputs.
Definition BNO08x.cpp:501
BNO08x(bno08x_config_t imu_config=bno08x_config_t())
BNO08x imu constructor.
Definition BNO08x.cpp:20
static void cb_task_trampoline(void *arg)
Static function used to launch cb_task task.
Definition BNO08x.cpp:229
struct BNO08x::bno08x_reports_t bno08x_reports_t
Contains report implementations.
esp_err_t init_gpio()
Initializes required gpio.
Definition BNO08x.cpp:538
bno08x_reports_t rpt
Definition BNO08x.hpp:127
esp_err_t init_sh2_HAL()
Initializes sh2 HAL.
Definition BNO08x.cpp:727
static const constexpr TickType_t DATA_AVAILABLE_TIMEOUT_MS
Max wait between data_available() being called and no new data/report being detected.
Definition BNO08x.hpp:255
static const constexpr TickType_t HOST_INT_TIMEOUT_DEFAULT_MS
Max wait between HINT being asserted by BNO08x before transaction is considered failed (in milisecond...
Definition BNO08x.hpp:251
bool initialize()
Initializes BNO08x sensor.
Definition BNO08x.cpp:81
bno08x_config_t imu_config
IMU configuration settings.
Definition BNO08x.hpp:192
bool get_frs(uint16_t frs_ID, uint32_t(&data)[16], uint16_t &rx_data_sz)
Retrieves a record from flash record system (if your goal is to retrieve meta data use the BNO08xRpt:...
Definition BNO08x.cpp:1397
QueueHandle_t queue_rx_sensor_event
Queue to send sensor events from sh2 HAL sensor event callback (BNO08xSH2HAL::sensor_event_cb()) to d...
Definition BNO08x.hpp:188
bool calibration_start(uint32_t period_us)
Starts simple calibration, see ref. manual 6.4.10.1.
Definition BNO08x.cpp:1199
TaskHandle_t data_proc_task_hdl
data_proc_task() task handle
Definition BNO08x.hpp:133
TaskHandle_t sh2_HAL_service_task_hdl
sh2_HAL_service_task() task handle
Definition BNO08x.hpp:140
Class to represent ARVR stabilized rotation vector reports. (See Ref. Manual 6.5.43)
Definition BNO08xRptARVRStabilizedGameRV.hpp:16
Class to represent ARVR stabilized rotation vector reports. (See Ref. Manual 6.5.42)
Definition BNO08xRptARVRStabilizedRV.hpp:16
Class to represent accelerometer reports. (See Ref. Manual 6.5.9)
Definition BNO08xRptAcceleration.hpp:16
Class to represent activity classifier reports. (See Ref. Manual 6.5.36)
Definition BNO08xRptActivityClassifier.hpp:16
Class to represent calibrated gyro reports. (See Ref. Manual 6.5.13)
Definition BNO08xRptCalGyro.hpp:16
Class to represent calibrated magnetometer reports. (See Ref. Manual 6.5.16)
Definition BNO08xRptCalMagnetometer.hpp:16
Class to represent game rotation vector reports. (See Ref. Manual 6.5.19)
Definition BNO08xRptGameRV.hpp:16
Class to represent gravity reports. (See Ref. Manual 6.5.11)
Definition BNO08xRptGravity.hpp:16
Class to represent integrated gyro rotation vector reports. (See Ref. Manual 6.5.44)
Definition BNO08xRptIGyroRV.hpp:16
Class to represent linear accelerometer reports. (See Ref. Manual 6.5.10)
Definition BNO08xRptLinearAcceleration.hpp:16
Class to represent geomagnetic rotation vector reports. (See Ref. Manual 6.5.20)
Definition BNO08xRptRVGeomag.hpp:16
Class to represent rotation vector reports. (See Ref. Manual 6.5.18)
Definition BNO08xRptRV.hpp:16
Class to represent raw accelerometer reports. (See Ref. Manual 6.5.8)
Definition BNO08xRptRawMEMSAccelerometer.hpp:16
Class to represent raw gyro reports. (See Ref. Manual 6.5.12)
Definition BNO08xRptRawMEMSGyro.hpp:16
Class to represent raw magnetometer reports. (See Ref. Manual 6.5.15)
Definition BNO08xRptRawMEMSMagnetometer.hpp:16
Class to represent shake detector reports. (See Ref. Manual 6.5.32)
Definition BNO08xRptShakeDetector.hpp:16
Class to represent stability classifier reports. (See Ref. Manual 6.5.31)
Definition BNO08xRptStabilityClassifier.hpp:16
Class to represent step counter reports. (See Ref. Manual 6.5.29)
Definition BNO08xRptStepCounter.hpp:16
Class to represent tap detector reports. (See Ref. Manual 6.5.27)
Definition BNO08xRptTapDetector.hpp:16
Class to represent uncalibrated gyro reports. (See Ref. Manual 6.5.14)
Definition BNO08xRptUncalGyro.hpp:16
Class to represent uncalibrated magnetometer reports. (See Ref. Manual 6.5.17)
Definition BNO08xRptUncalMagnetometer.hpp:17
Fully static class containing callback implementations for sh2 HAL lib.
Definition BNO08xSH2HAL.hpp:72
BNO08x unit test helper class.
Definition BNO08xTestHelper.hpp:17
Definition BNO08xPrivateTypes.hpp:21
Contains report implementations.
Definition BNO08x.hpp:72
BNO08xRptARVRStabilizedRV rv_ARVR_stabilized
Definition BNO08x.hpp:82
BNO08xRptCalMagnetometer cal_magnetometer
Definition BNO08x.hpp:76
BNO08xRptTapDetector tap_detector
Definition BNO08x.hpp:93
BNO08xRptRawMEMSGyro raw_gyro
Definition BNO08x.hpp:86
BNO08xRptStabilityClassifier stability_classifier
Definition BNO08x.hpp:91
BNO08xRptUncalMagnetometer uncal_magnetometer
Definition BNO08x.hpp:77
BNO08xRptActivityClassifier activity_classifier
Definition BNO08x.hpp:90
BNO08xRptIGyroRV rv_gyro_integrated
Definition BNO08x.hpp:84
BNO08xRptUncalGyro uncal_gyro
Definition BNO08x.hpp:79
BNO08xRptRVGeomag rv_geomagnetic
Definition BNO08x.hpp:85
BNO08xRptGameRV rv_game
Definition BNO08x.hpp:81
BNO08xRptShakeDetector shake_detector
Definition BNO08x.hpp:92
BNO08xRptRawMEMSAccelerometer raw_accelerometer
Definition BNO08x.hpp:87
bno08x_reports_t(BNO08xPrivateTypes::bno08x_sync_ctx_t *sync_ctx)
Definition BNO08x.hpp:95
BNO08xRptRawMEMSMagnetometer raw_magnetometer
Definition BNO08x.hpp:88
BNO08xRptAcceleration accelerometer
Definition BNO08x.hpp:73
BNO08xRptLinearAcceleration linear_accelerometer
Definition BNO08x.hpp:74
BNO08xRptCalGyro cal_gyro
Definition BNO08x.hpp:78
BNO08xRptRV rv
Definition BNO08x.hpp:80
BNO08xRptStepCounter step_counter
Definition BNO08x.hpp:89
BNO08xRptGravity gravity
Definition BNO08x.hpp:75
BNO08xRptARVRStabilizedGameRV rv_ARVR_stabilized_game
Definition BNO08x.hpp:83
Holds info about which functionality has been successfully initialized (used by deconstructor during ...
Definition BNO08xPrivateTypes.hpp:28
Holds context used to synchronize tasks and callback execution.
Definition BNO08xPrivateTypes.hpp:57
IMU configuration settings passed into constructor.
Definition BNO08xGlobalTypes.hpp:38