esp32_BNO08x 1.31
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();
43
44 bool on();
45 bool sleep();
46
47 bool calibration_start(uint32_t period_us);
48 bool calibration_end(sh2_CalStatus_t& status);
49
56
57 bool get_frs(uint16_t frs_ID, uint32_t (&data)[16], uint16_t& rx_data_sz);
58 sh2_ProductIds_t get_product_IDs();
59
60 bool data_available();
61 bool register_cb(std::function<void(void)> cb_fxn);
62 bool register_cb(std::function<void(uint8_t report_ID)> cb_fxn);
63
64 void print_product_ids();
65
66 // enum helper fxns
67 static const char* activity_to_str(BNO08xActivity activity);
68 static const char* stability_to_str(BNO08xStability stability);
69 static const char* accuracy_to_str(BNO08xAccuracy accuracy);
70
72 typedef struct bno08x_reports_t
73 {
95
97 : accelerometer(SH2_ACCELEROMETER, BNO08xPrivateTypes::EVT_GRP_RPT_ACCELEROMETER_BIT, sync_ctx)
99 SH2_LINEAR_ACCELERATION, BNO08xPrivateTypes::EVT_GRP_RPT_LINEAR_ACCELEROMETER_BIT, sync_ctx)
100 , gravity(SH2_GRAVITY, BNO08xPrivateTypes::EVT_GRP_RPT_GRAVITY_BIT, sync_ctx)
102 SH2_MAGNETIC_FIELD_CALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_CAL_MAGNETOMETER_BIT, sync_ctx)
104 SH2_MAGNETIC_FIELD_UNCALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_UNCAL_MAGNETOMETER_BIT, sync_ctx)
105 , cal_gyro(SH2_GYROSCOPE_CALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_CAL_GYRO_BIT, sync_ctx)
106 , uncal_gyro(SH2_GYROSCOPE_UNCALIBRATED, BNO08xPrivateTypes::EVT_GRP_RPT_UNCAL_GYRO_BIT, sync_ctx)
107 , rv(SH2_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_RV_BIT, sync_ctx)
108 , rv_game(SH2_GAME_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_RV_GAME_BIT, sync_ctx)
109 , rv_ARVR_stabilized(SH2_ARVR_STABILIZED_RV, BNO08xPrivateTypes::EVT_GRP_RPT_RV_ARVR_S_BIT, sync_ctx)
111 SH2_ARVR_STABILIZED_GRV, BNO08xPrivateTypes::EVT_GRP_RPT_RV_ARVR_S_GAME_BIT, sync_ctx)
112 , rv_gyro_integrated(SH2_GYRO_INTEGRATED_RV, BNO08xPrivateTypes::EVT_GRP_RPT_GYRO_INTEGRATED_RV_BIT, sync_ctx)
113 , rv_geomagnetic(SH2_GEOMAGNETIC_ROTATION_VECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_GEOMAG_RV_BIT, sync_ctx)
114 , raw_gyro(SH2_RAW_GYROSCOPE, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_GYRO_BIT, sync_ctx)
115 , raw_accelerometer(SH2_RAW_ACCELEROMETER, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_ACCELEROMETER_BIT, sync_ctx)
116 , raw_magnetometer(SH2_RAW_MAGNETOMETER, BNO08xPrivateTypes::EVT_GRP_RPT_RAW_MAGNETOMETER_BIT, sync_ctx)
117 , step_counter(SH2_STEP_COUNTER, BNO08xPrivateTypes::EVT_GRP_RPT_STEP_COUNTER_BIT, sync_ctx)
119 SH2_PERSONAL_ACTIVITY_CLASSIFIER, BNO08xPrivateTypes::EVT_GRP_RPT_ACTIVITY_CLASSIFIER_BIT, sync_ctx)
121 SH2_STABILITY_CLASSIFIER, BNO08xPrivateTypes::EVT_GRP_RPT_STABILITY_CLASSIFIER_BIT, sync_ctx)
122 , shake_detector(SH2_SHAKE_DETECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_SHAKE_DETECTOR_BIT, sync_ctx)
123 , tap_detector(SH2_TAP_DETECTOR, BNO08xPrivateTypes::EVT_GRP_RPT_TAP_DETECTOR_BIT, sync_ctx)
124 {
125 }
127
129
130 private:
131 // data processing task
132 static const constexpr configSTACK_DEPTH_TYPE DATA_PROC_TASK_SZ =
133 CONFIG_ESP32_BNO08X_DATA_PROC_TASK_SZ;
134 TaskHandle_t data_proc_task_hdl;
135 static void data_proc_task_trampoline(void* arg);
136 void data_proc_task();
137
138 // sh2 service task
139 static const constexpr configSTACK_DEPTH_TYPE SH2_HAL_SERVICE_TASK_SZ =
140 CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_SZ;
142 static void sh2_HAL_service_task_trampoline(void* arg);
144
145 // callback task
146 static const constexpr configSTACK_DEPTH_TYPE CB_TASK_SZ =
147 CONFIG_ESP32_BNO08X_CB_TASK_SZ;
148 TaskHandle_t cb_task_hdl;
149 static void cb_task_trampoline(void* arg);
150 void cb_task();
151
152 SemaphoreHandle_t sem_kill_tasks;
153
154 void lock_sh2_HAL();
155 void unlock_sh2_HAL();
156 void lock_user_data();
157 void unlock_user_data();
158
159 void handle_sensor_report(sh2_SensorValue_t* sensor_val);
160 void handle_cb(uint8_t rpt_ID, BNO08xCbGeneric* cb_entry);
161
162 esp_err_t init_config_args();
163 esp_err_t init_gpio();
164 esp_err_t init_gpio_inputs();
165 esp_err_t init_gpio_outputs();
166 esp_err_t init_hint_isr();
167 esp_err_t init_spi();
168 esp_err_t init_tasks();
169 esp_err_t init_sh2_HAL();
170
171 esp_err_t deinit_gpio();
172 esp_err_t deinit_gpio_inputs();
173 esp_err_t deinit_gpio_outputs();
174 esp_err_t deinit_hint_isr();
175 esp_err_t deinit_spi();
176 esp_err_t deinit_tasks();
177 esp_err_t deinit_sh2_HAL();
178
179 esp_err_t wait_for_hint();
180 esp_err_t wait_for_reset();
181
182 void toggle_reset();
183
184 esp_err_t re_enable_reports();
185
186 sh2_Hal_t sh2_HAL;
187
188 QueueHandle_t
190
191 QueueHandle_t queue_cb_report_id;
192
194 spi_bus_config_t bus_config{};
195 spi_device_interface_config_t imu_spi_config{};
196 spi_device_handle_t spi_hdl{};
197 spi_transaction_t spi_transaction{};
201 sh2_ProductIds_t product_IDs;
202
203 // clang-format off
204 etl::map<uint8_t, BNO08xRpt*, TOTAL_RPT_COUNT, etl::less<uint8_t>> usr_reports =
205 {
206 {SH2_ACCELEROMETER, &rpt.accelerometer},
207 {SH2_LINEAR_ACCELERATION, &rpt.linear_accelerometer},
208 {SH2_GRAVITY, &rpt.gravity},
209 {SH2_MAGNETIC_FIELD_CALIBRATED, &rpt.cal_magnetometer},
210 {SH2_MAGNETIC_FIELD_UNCALIBRATED, &rpt.uncal_magnetometer},
211 {SH2_GYROSCOPE_CALIBRATED, &rpt.cal_gyro},
212 {SH2_GYROSCOPE_UNCALIBRATED, &rpt.uncal_gyro},
213 {SH2_ROTATION_VECTOR, &rpt.rv},
214 {SH2_GAME_ROTATION_VECTOR, &rpt.rv_game},
215 {SH2_ARVR_STABILIZED_RV, &rpt.rv_ARVR_stabilized},
216 {SH2_ARVR_STABILIZED_GRV, &rpt.rv_ARVR_stabilized_game},
217 {SH2_GYRO_INTEGRATED_RV, &rpt.rv_gyro_integrated},
218 {SH2_GEOMAGNETIC_ROTATION_VECTOR, &rpt.rv_geomagnetic},
219 {SH2_RAW_GYROSCOPE, &rpt.raw_gyro},
220 {SH2_RAW_ACCELEROMETER, &rpt.raw_accelerometer},
221 {SH2_RAW_MAGNETOMETER, &rpt.raw_magnetometer},
222 {SH2_STEP_COUNTER, &rpt.step_counter},
223 {SH2_PERSONAL_ACTIVITY_CLASSIFIER, &rpt.activity_classifier},
224 {SH2_STABILITY_CLASSIFIER, &rpt.stability_classifier},
225 {SH2_SHAKE_DETECTOR, &rpt.shake_detector},
226 {SH2_TAP_DETECTOR, &rpt.tap_detector},
227
228 // not implemented, see include/report for existing implementations to add your own
229 {SH2_PRESSURE, nullptr}, // requires auxilary i2c sensor
230 {SH2_AMBIENT_LIGHT, nullptr}, // requires auxilary i2c sensor
231 {SH2_HUMIDITY, nullptr}, // requires auxilary i2c sensor
232 {SH2_PROXIMITY, nullptr}, // requires auxilary i2c sensor
233 {SH2_TEMPERATURE, nullptr}, // requires auxilary i2c sensor
234 {SH2_HEART_RATE_MONITOR, nullptr}, // requires auxilary i2c sensor
235 {SH2_STEP_DETECTOR, nullptr},
236 {SH2_SIGNIFICANT_MOTION, nullptr},
237 {SH2_FLIP_DETECTOR, nullptr},
238 {SH2_PICKUP_DETECTOR, nullptr},
239 {SH2_STABILITY_DETECTOR, nullptr},
240 {SH2_SLEEP_DETECTOR, nullptr},
241 {SH2_TILT_DETECTOR, nullptr},
242 {SH2_POCKET_DETECTOR, nullptr},
243 {SH2_CIRCLE_DETECTOR, nullptr},
244 {SH2_IZRO_MOTION_REQUEST, nullptr}
245 };
246 // clang-format on
247
248 static void IRAM_ATTR hint_handler(void* arg);
249
250 static const constexpr uint16_t RX_DATA_LENGTH = 300U;
251
252 static const constexpr TickType_t HOST_INT_TIMEOUT_DEFAULT_MS =
253 CONFIG_ESP32_BNO08X_HINT_TIMEOUT_MS /
254 portTICK_PERIOD_MS;
255
256 static const constexpr TickType_t DATA_AVAILABLE_TIMEOUT_MS =
257 CONFIG_ESP32_BNO08X_DATA_AVAILABLE_TIMEOUT_MS /
258 portTICK_PERIOD_MS;
259
260 static const constexpr TickType_t HARD_RESET_DELAY_MS =
261 CONFIG_ESP32_BNO08X_HARD_RESET_DELAY_MS /
262 portTICK_PERIOD_MS;
263
264 static const constexpr uint32_t SCLK_MAX_SPEED = 3000000UL;
265
266 static const constexpr char* TAG = "BNO08x";
267
268 friend class BNO08xSH2HAL;
269 friend class BNO08xTestHelper;
270};
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:264
static const char * activity_to_str(BNO08xActivity activity)
Converts a BNO08xActivity enum to string.
Definition BNO08x.cpp:1658
BNO08xPrivateTypes::bno08x_init_status_t init_status
Initialization status of various functionality, used by deconstructor during cleanup,...
Definition BNO08x.hpp:199
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:323
static const constexpr uint16_t RX_DATA_LENGTH
length buffer containing data received over spi
Definition BNO08x.hpp:250
bool save_dynamic_calibration()
Saves dynamic/motion engine calibration data to BNO08x internal flash immediately....
Definition BNO08x.cpp:1379
esp_err_t deinit_gpio_inputs()
Deinitializes GPIO inputs, called from deconstructor.
Definition BNO08x.cpp:835
BNO08xPrivateTypes::bno08x_sync_ctx_t sync_ctx
Holds context used to synchronize tasks and callback execution.
Definition BNO08x.hpp:200
esp_err_t deinit_spi()
Deinitializes SPI.
Definition BNO08x.cpp:931
bool hard_reset()
Hard resets BNO08x device.
Definition BNO08x.cpp:1046
static const constexpr char * TAG
Class tag used for serial print statements.
Definition BNO08x.hpp:266
void unlock_sh2_HAL()
Unlocks sh2 HAL lib to allow other tasks to call its APIs.
Definition BNO08x.cpp:303
bool data_available()
Polls for new data/report to become available.
Definition BNO08x.cpp:1582
void lock_user_data()
Locks locks user data to only allow the calling task to read/modify it.
Definition BNO08x.cpp:313
static const char * accuracy_to_str(BNO08xAccuracy accuracy)
Definition BNO08x.cpp:1715
spi_device_interface_config_t imu_spi_config
SPI slave device settings.
Definition BNO08x.hpp:195
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:1345
esp_err_t deinit_gpio()
Deinitializes GPIO, called from deconstructor.
Definition BNO08x.cpp:805
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:390
etl::map< uint8_t, BNO08xRpt *, TOTAL_RPT_COUNT, etl::less< uint8_t > > usr_reports
Definition BNO08x.hpp:204
esp_err_t init_spi()
Initializes SPI.
Definition BNO08x.cpp:702
bool dynamic_calibration_disable(BNO08xCalSel sensor)
Disables dynamic/motion engine calibration for specified sensor(s), see ref. manual 6....
Definition BNO08x.cpp:1318
void cb_task()
Task responsible for executing callbacks registered with register_cb().
Definition BNO08x.cpp:255
static const constexpr configSTACK_DEPTH_TYPE CB_TASK_SZ
Size of sh2_HAL_service_task() stack in bytes.
Definition BNO08x.hpp:146
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:1507
void toggle_reset()
Toggles reset gpio pin for hard reset of BNO08x device.
Definition BNO08x.cpp:1523
~BNO08x()
BNO08x imu deconstructor.
Definition BNO08x.cpp:39
TaskHandle_t cb_task_hdl
sh2_HAL_service_task() task handle
Definition BNO08x.hpp:148
esp_err_t wait_for_hint()
Waits for HINT pin assertion or HOST_INT_TIMEOUT_DEFAULT_MS to elapse.
Definition BNO08x.cpp:1488
void print_product_ids()
Prints product IDs received at initialization.
Definition BNO08x.cpp:1635
esp_err_t deinit_sh2_HAL()
Deinitializes sh2 HAL.
Definition BNO08x.cpp:1030
bool sleep()
Places BNO08x device in sleep state by sending SLEEP (3) command on "device" channel.
Definition BNO08x.cpp:1239
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:333
static void IRAM_ATTR hint_handler(void *arg)
HINT interrupt service routine, handles falling edge of BNO08x HINT pin.
Definition BNO08x.cpp:1741
bool calibration_end(sh2_CalStatus_t &status)
Ends turn-table calibration, see ref. manual 6.4.10.2.
Definition BNO08x.cpp:1281
bool clear_dynamic_calibration()
Clears dynamic/motion engine calibration data and resets BNO08x device. See ref manual 6....
Definition BNO08x.cpp:1396
void handle_cb(uint8_t rpt_ID, BNO08xCbGeneric *cb_entry)
Determines the flavor of a passed callback and executes it appropriately.
Definition BNO08x.cpp:375
static const constexpr configSTACK_DEPTH_TYPE DATA_PROC_TASK_SZ
Size of data_proc_task() stack in bytes.
Definition BNO08x.hpp:132
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:191
void lock_sh2_HAL()
Locks sh2 HAL lib to only allow the calling task to call its APIs.
Definition BNO08x.cpp:293
esp_err_t init_gpio_inputs()
Initializes required gpio inputs.
Definition BNO08x.cpp:485
esp_err_t init_tasks()
Initializes data_proc_task.
Definition BNO08x.cpp:632
bool dynamic_calibration_enable(BNO08xCalSel sensor)
Enables dynamic/motion engine calibration for specified sensor(s), see ref. manual 6....
Definition BNO08x.cpp:1299
bool dynamic_calibration_autosave_disable()
Disables the automatic saving of dynamic/ME calibration data to BNO08x internal flash See ref manual ...
Definition BNO08x.cpp:1362
esp_err_t deinit_tasks()
Deinitializes tasks used by BNO08x driver.
Definition BNO08x.cpp:977
BNO08xResetReason get_reset_reason()
Returns reason for previous reset via product ID report.
Definition BNO08x.cpp:1192
bool soft_reset()
Soft resets BNO08x device by sending RESET (1) command on "device" channel.
Definition BNO08x.cpp:1090
spi_bus_config_t bus_config
SPI bus GPIO configuration settings.
Definition BNO08x.hpp:194
esp_err_t deinit_hint_isr()
Deinitializes host interrupt ISR, called from deconstructor.
Definition BNO08x.cpp:893
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:260
esp_err_t init_hint_isr()
Initializes host interrupt ISR.
Definition BNO08x.cpp:583
static const char * stability_to_str(BNO08xStability stability)
Converts a BNO08xStability enum to string.
Definition BNO08x.cpp:1692
sh2_ProductIds_t get_product_IDs()
Returns product ID info sent by IMU at initialization.
Definition BNO08x.cpp:1477
SemaphoreHandle_t sem_kill_tasks
Counting Semaphore to count amount of killed tasks.
Definition BNO08x.hpp:152
bool on()
Places BNO08x device in on state by sending ON (2) command on "device" channel.
Definition BNO08x.cpp:1223
static const constexpr configSTACK_DEPTH_TYPE SH2_HAL_SERVICE_TASK_SZ
Size of sh2_HAL_service_task() stack in bytes.
Definition BNO08x.hpp:139
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:1600
esp_err_t deinit_gpio_outputs()
Deinitializes GPIO outputs, called from deconstructor.
Definition BNO08x.cpp:857
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:186
spi_transaction_t spi_transaction
SPI transaction handle.
Definition BNO08x.hpp:197
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:1541
sh2_ProductIds_t product_IDs
Product ID info returned IMU at initialization, can be viewed with print_product_ids()
Definition BNO08x.hpp:201
spi_device_handle_t spi_hdl
SPI device handle.
Definition BNO08x.hpp:196
esp_err_t init_gpio_outputs()
Initializes required gpio outputs.
Definition BNO08x.cpp:521
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:243
struct BNO08x::bno08x_reports_t bno08x_reports_t
Contains report implementations.
esp_err_t init_gpio()
Initializes required gpio.
Definition BNO08x.cpp:558
bno08x_reports_t rpt
Definition BNO08x.hpp:128
esp_err_t init_sh2_HAL()
Initializes sh2 HAL.
Definition BNO08x.cpp:747
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:256
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:252
bool initialize()
Initializes BNO08x sensor.
Definition BNO08x.cpp:81
bool disable_all_reports()
Disables all currently enabled reports.
Definition BNO08x.cpp:1148
bno08x_config_t imu_config
IMU configuration settings.
Definition BNO08x.hpp:193
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:1461
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:189
bool calibration_start(uint32_t period_us)
Starts simple calibration, see ref. manual 6.4.10.1.
Definition BNO08x.cpp:1263
TaskHandle_t data_proc_task_hdl
data_proc_task() task handle
Definition BNO08x.hpp:134
TaskHandle_t sh2_HAL_service_task_hdl
sh2_HAL_service_task() task handle
Definition BNO08x.hpp:141
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:73
BNO08xRptARVRStabilizedRV rv_ARVR_stabilized
Definition BNO08x.hpp:83
BNO08xRptCalMagnetometer cal_magnetometer
Definition BNO08x.hpp:77
BNO08xRptTapDetector tap_detector
Definition BNO08x.hpp:94
BNO08xRptRawMEMSGyro raw_gyro
Definition BNO08x.hpp:87
BNO08xRptStabilityClassifier stability_classifier
Definition BNO08x.hpp:92
BNO08xRptUncalMagnetometer uncal_magnetometer
Definition BNO08x.hpp:78
BNO08xRptActivityClassifier activity_classifier
Definition BNO08x.hpp:91
BNO08xRptIGyroRV rv_gyro_integrated
Definition BNO08x.hpp:85
BNO08xRptUncalGyro uncal_gyro
Definition BNO08x.hpp:80
BNO08xRptRVGeomag rv_geomagnetic
Definition BNO08x.hpp:86
BNO08xRptGameRV rv_game
Definition BNO08x.hpp:82
BNO08xRptShakeDetector shake_detector
Definition BNO08x.hpp:93
BNO08xRptRawMEMSAccelerometer raw_accelerometer
Definition BNO08x.hpp:88
bno08x_reports_t(BNO08xPrivateTypes::bno08x_sync_ctx_t *sync_ctx)
Definition BNO08x.hpp:96
BNO08xRptRawMEMSMagnetometer raw_magnetometer
Definition BNO08x.hpp:89
BNO08xRptAcceleration accelerometer
Definition BNO08x.hpp:74
BNO08xRptLinearAcceleration linear_accelerometer
Definition BNO08x.hpp:75
BNO08xRptCalGyro cal_gyro
Definition BNO08x.hpp:79
BNO08xRptRV rv
Definition BNO08x.hpp:81
BNO08xRptStepCounter step_counter
Definition BNO08x.hpp:90
BNO08xRptGravity gravity
Definition BNO08x.hpp:76
BNO08xRptARVRStabilizedGameRV rv_ARVR_stabilized_game
Definition BNO08x.hpp:84
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