10#include <etl/variant.h>
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>
56 bool get_frs(uint16_t frs_ID, uint32_t (&data)[16], uint16_t& rx_data_sz);
61 bool register_cb(std::function<
void(uint8_t report_ID)> cb_fxn);
132 CONFIG_ESP32_BNO08X_DATA_PROC_TASK_SZ;
139 CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_SZ;
146 CONFIG_ESP32_BNO08X_CB_TASK_SZ;
203 etl::map<uint8_t, BNO08xRpt*, TOTAL_RPT_COUNT, etl::less<uint8_t>>
usr_reports =
212 {SH2_ROTATION_VECTOR, &
rpt.
rv},
228 {SH2_PRESSURE,
nullptr},
229 {SH2_AMBIENT_LIGHT,
nullptr},
230 {SH2_HUMIDITY,
nullptr},
231 {SH2_PROXIMITY,
nullptr},
232 {SH2_TEMPERATURE,
nullptr},
233 {SH2_HEART_RATE_MONITOR,
nullptr},
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}
252 CONFIG_ESP32_BNO08X_HINT_TIMEOUT_MS /
256 CONFIG_ESP32_BNO08X_DATA_AVAILABLE_TIMEOUT_MS /
260 CONFIG_ESP32_BNO08X_HARD_RESET_DELAY_MS /
265 static const constexpr char*
TAG =
"BNO08x";
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