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>
69 bool register_cb(std::function<
void(uint8_t report_ID)> cb_fxn);
135 static const constexpr configSTACK_DEPTH_TYPE DATA_PROC_TASK_SZ =
136 CONFIG_ESP32_BNO08X_DATA_PROC_TASK_SZ;
137 TaskHandle_t data_proc_task_hdl;
138 static void data_proc_task_trampoline(
void* arg);
139 void data_proc_task();
142 static const constexpr configSTACK_DEPTH_TYPE SH2_HAL_SERVICE_TASK_SZ =
143 CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_SZ;
144 TaskHandle_t sh2_HAL_service_task_hdl;
145 static void sh2_HAL_service_task_trampoline(
void* arg);
146 void sh2_HAL_service_task();
149 static const constexpr configSTACK_DEPTH_TYPE CB_TASK_SZ =
150 CONFIG_ESP32_BNO08X_CB_TASK_SZ;
151 TaskHandle_t cb_task_hdl;
152 static void cb_task_trampoline(
void* arg);
155 static const constexpr BaseType_t CB_TASK_AFFINITY =
156 CONFIG_ESP32_BNO08X_CB_TASK_AFFINITY < 0 ? tskNO_AFFINITY : CONFIG_ESP32_BNO08X_CB_TASK_AFFINITY ;
157 static const constexpr UBaseType_t CB_TASK_PRIORITY = CONFIG_ESP32_BNO08X_CB_TASK_PRIORITY;
159 static const constexpr BaseType_t DATA_PROC_TASK_AFFINITY =
160 CONFIG_ESP32_BNO08X_DATA_PROC_TASK_AFFINITY < 0 ? tskNO_AFFINITY : CONFIG_ESP32_BNO08X_DATA_PROC_TASK_AFFINITY;
161 static const constexpr UBaseType_t DATA_PROC_TASK_PRIORITY = CONFIG_ESP32_BNO08X_DATA_PROC_TASK_PRIORITY;
163 static const constexpr BaseType_t SH2_HAL_SERVICE_TASK_AFFINITY =
164 CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_AFFINITY < 0 ? tskNO_AFFINITY : CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_AFFINITY;
165 static const constexpr UBaseType_t SH2_HAL_SERVICE_TASK_PRIORITY = CONFIG_ESP32_BNO08X_SH2_HAL_SERVICE_TASK_PRIORITY;
168 SemaphoreHandle_t sem_kill_tasks;
171 void unlock_sh2_HAL();
172 void lock_user_data();
173 void unlock_user_data();
175 void handle_sensor_report(sh2_SensorValue_t* sensor_val);
178 esp_err_t init_config_args();
179 esp_err_t init_gpio();
180 esp_err_t init_gpio_inputs();
181 esp_err_t init_gpio_outputs();
182 esp_err_t init_hint_isr();
183 esp_err_t init_spi();
184 esp_err_t init_tasks();
185 esp_err_t init_sh2_HAL();
187 esp_err_t deinit_gpio();
188 esp_err_t deinit_gpio_inputs();
189 esp_err_t deinit_gpio_outputs();
190 esp_err_t deinit_hint_isr();
191 esp_err_t deinit_spi();
192 esp_err_t deinit_tasks();
193 esp_err_t deinit_sh2_HAL();
195 esp_err_t wait_for_hint();
196 esp_err_t wait_for_reset();
200 esp_err_t re_enable_reports();
205 queue_rx_sensor_event;
207 QueueHandle_t queue_cb_report_id;
210 spi_bus_config_t bus_config{};
211 spi_device_interface_config_t imu_spi_config{};
212 spi_device_handle_t spi_hdl{};
213 spi_transaction_t spi_transaction{};
217 sh2_ProductIds_t product_IDs;
220 etl::map<uint8_t, BNO08xRpt*, TOTAL_RPT_COUNT, etl::less<uint8_t>> usr_reports =
229 {SH2_ROTATION_VECTOR, &
rpt.
rv},
245 {SH2_PRESSURE,
nullptr},
246 {SH2_AMBIENT_LIGHT,
nullptr},
247 {SH2_HUMIDITY,
nullptr},
248 {SH2_PROXIMITY,
nullptr},
249 {SH2_TEMPERATURE,
nullptr},
250 {SH2_HEART_RATE_MONITOR,
nullptr},
251 {SH2_STEP_DETECTOR,
nullptr},
252 {SH2_SIGNIFICANT_MOTION,
nullptr},
253 {SH2_FLIP_DETECTOR,
nullptr},
254 {SH2_PICKUP_DETECTOR,
nullptr},
255 {SH2_STABILITY_DETECTOR,
nullptr},
256 {SH2_SLEEP_DETECTOR,
nullptr},
257 {SH2_TILT_DETECTOR,
nullptr},
258 {SH2_POCKET_DETECTOR,
nullptr},
259 {SH2_CIRCLE_DETECTOR,
nullptr},
260 {SH2_IZRO_MOTION_REQUEST,
nullptr}
264 static void IRAM_ATTR hint_handler(
void* arg);
266 static const constexpr uint16_t RX_DATA_LENGTH = 300U;
268 static const constexpr TickType_t HOST_INT_TIMEOUT_DEFAULT_MS =
269 CONFIG_ESP32_BNO08X_HINT_TIMEOUT_MS /
272 static const constexpr TickType_t DATA_AVAILABLE_TIMEOUT_MS =
273 CONFIG_ESP32_BNO08X_DATA_AVAILABLE_TIMEOUT_MS /
276 static const constexpr TickType_t HARD_RESET_DELAY_MS =
277 CONFIG_ESP32_BNO08X_HARD_RESET_DELAY_MS /
280 static const constexpr uint32_t SCLK_MAX_SPEED = 3000000UL;
282 static const constexpr char* TAG =
"BNO08x";
BNO08xCalSel
Definition: BNO08xGlobalTypes.hpp:84
struct bno08x_config_t bno08x_config_t
IMU configuration settings passed into constructor.
BNO08xFrsID
Definition: BNO08xGlobalTypes.hpp:240
BNO08xResetReason
Reason for previous IMU reset (returned by get_reset_reason())
Definition: BNO08xGlobalTypes.hpp:94
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
bool get_frs(BNO08xFrsID frs_ID, uint32_t(&data)[16], uint16_t &rx_data_sz)
Retrieves a record from flash record system (if your goal is to retrieve sensor specific meta data us...
Definition: BNO08x.cpp:1727
bool hard_reset()
Hard resets BNO08x device.
Definition: BNO08x.cpp:1061
bool data_available()
Polls for new data/report to become available.
Definition: BNO08x.cpp:1892
bool dynamic_calibration_data_clear_ram()
Clears dynamic/motion engine calibration data from ram and resets BNO08x device. See ref manual 6....
Definition: BNO08x.cpp:1416
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:1365
bool dynamic_calibration_disable(BNO08xCalSel sensor)
Disables dynamic/motion engine calibration for specified sensor(s), see ref. manual 6....
Definition: BNO08x.cpp:1338
bool dynamic_calibration_data_delete()
Deletes dynamic calibration data from BNO08x internal flash and resets the device....
Definition: BNO08x.cpp:1689
~BNO08x()
BNO08x imu deconstructor.
Definition: BNO08x.cpp:39
void print_product_ids()
Prints product IDs received at initialization.
Definition: BNO08x.cpp:1945
bool sleep()
Places BNO08x device in sleep state by sending SLEEP (3) command on "device" channel.
Definition: BNO08x.cpp:1254
bool dynamic_calibration_save()
Saves dynamic/motion engine calibration data to BNO08x internal flash immediately....
Definition: BNO08x.cpp:1399
bool dynamic_calibration_enable(BNO08xCalSel sensor)
Starts simple calibration, see ref. manual 6.4.10.1.
Definition: BNO08x.cpp:1319
bool dynamic_calibration_autosave_disable()
Disables the automatic saving of dynamic/ME calibration data to BNO08x internal flash See ref manual ...
Definition: BNO08x.cpp:1382
BNO08xResetReason get_reset_reason()
Returns reason for previous reset via product ID report.
Definition: BNO08x.cpp:1207
bool soft_reset()
Soft resets BNO08x device by sending RESET (1) command on "device" channel.
Definition: BNO08x.cpp:1105
bool write_frs(BNO08xFrsID frs_ID, uint32_t *data, const uint16_t tx_data_sz)
Writes a record to flash record system.
Definition: BNO08x.cpp:1760
sh2_ProductIds_t get_product_IDs()
Returns product ID info sent by IMU at initialization.
Definition: BNO08x.cpp:1787
bool on()
Places BNO08x device in on state by sending ON (2) command on "device" channel.
Definition: BNO08x.cpp:1238
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:1910
void print_system_orientation()
Retrieves and prints system orientation.
Definition: BNO08x.cpp:1968
static constexpr float SQRT2OVER2
Definition: BNO08x.hpp:59
bool set_system_orientation(float w, float x, float y, float z)
Sets the system orientation of the BNO08x device and persist it in flash (FRS).
Definition: BNO08x.cpp:2011
bool dynamic_calibration_run_routine()
Example calibration routine using dynamic/ME calibration commands.
Definition: BNO08x.cpp:1488
BNO08x(bno08x_config_t imu_config=bno08x_config_t())
BNO08x imu constructor.
Definition: BNO08x.cpp:20
bool get_system_orientation(float &w, float &x, float &y, float &z)
Retrieves the system orientation of the BNO08x device and converts to float.
Definition: BNO08x.cpp:2034
struct BNO08x::bno08x_reports_t bno08x_reports_t
Contains report implementations.
bno08x_reports_t rpt
Definition: BNO08x.hpp:131
bool initialize()
Initializes BNO08x sensor.
Definition: BNO08x.cpp:81
bool disable_all_reports()
Disables all currently enabled reports.
Definition: BNO08x.cpp:1163
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
@ EVT_GRP_RPT_UNCAL_GYRO_BIT
When set, uncalibrated gyro reports are active.
Definition: BNO08xPrivateTypes.hpp:91
@ EVT_GRP_RPT_GYRO_INTEGRATED_RV_BIT
When set, gyro integrator rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:85
@ EVT_GRP_RPT_LINEAR_ACCELEROMETER_BIT
When set, linear accelerometer reports are active.
Definition: BNO08xPrivateTypes.hpp:88
@ EVT_GRP_RPT_GEOMAG_RV_BIT
When set, geomagnetic rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:86
@ EVT_GRP_RPT_ACTIVITY_CLASSIFIER_BIT
When set, activity classifier reports are active.
Definition: BNO08xPrivateTypes.hpp:97
@ EVT_GRP_RPT_UNCAL_MAGNETOMETER_BIT
When set, uncalibrated magnetometer reports are active.
Definition: BNO08xPrivateTypes.hpp:93
@ EVT_GRP_RPT_ACCELEROMETER_BIT
When set, accelerometer reports are active.
Definition: BNO08xPrivateTypes.hpp:87
@ EVT_GRP_RPT_RAW_MAGNETOMETER_BIT
When set, raw magnetometer reports are active.
Definition: BNO08xPrivateTypes.hpp:101
@ EVT_GRP_RPT_RV_ARVR_S_BIT
When set, ARVR stabilized rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:83
@ EVT_GRP_RPT_RV_ARVR_S_GAME_BIT
When set, ARVR stabilized game rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:84
@ EVT_GRP_RPT_RAW_ACCELEROMETER_BIT
When set, raw accelerometer reports are active.
Definition: BNO08xPrivateTypes.hpp:99
@ EVT_GRP_RPT_GRAVITY_BIT
When set, gravity reports are active.
Definition: BNO08xPrivateTypes.hpp:89
@ EVT_GRP_RPT_RV_BIT
When set, rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:81
@ EVT_GRP_RPT_CAL_MAGNETOMETER_BIT
When set, calibrated magnetometer reports are active.
Definition: BNO08xPrivateTypes.hpp:92
@ EVT_GRP_RPT_RV_GAME_BIT
When set, game rotation vector reports are active.
Definition: BNO08xPrivateTypes.hpp:82
@ EVT_GRP_RPT_TAP_DETECTOR_BIT
When set, tap detector reports are active.
Definition: BNO08xPrivateTypes.hpp:94
@ EVT_GRP_RPT_SHAKE_DETECTOR_BIT
When set, shake detector reports are active.
Definition: BNO08xPrivateTypes.hpp:98
@ EVT_GRP_RPT_RAW_GYRO_BIT
When set, raw gyro reports are active.
Definition: BNO08xPrivateTypes.hpp:100
@ EVT_GRP_RPT_STABILITY_CLASSIFIER_BIT
When set, stability classifier reports are active.
Definition: BNO08xPrivateTypes.hpp:96
@ EVT_GRP_RPT_CAL_GYRO_BIT
When set, calibrated gyro reports are active.
Definition: BNO08xPrivateTypes.hpp:90
@ EVT_GRP_RPT_STEP_COUNTER_BIT
When set, step counter reports are active.
Definition: BNO08xPrivateTypes.hpp:95
Contains report implementations.
Definition: BNO08x.hpp:76
BNO08xRptARVRStabilizedRV rv_ARVR_stabilized
Definition: BNO08x.hpp:82
BNO08xRptCalMagnetometer cal_magnetometer
Definition: BNO08x.hpp:89
BNO08xRptTapDetector tap_detector
Definition: BNO08x.hpp:95
BNO08xRptRawMEMSGyro raw_gyro
Definition: BNO08x.hpp:91
BNO08xRptStabilityClassifier stability_classifier
Definition: BNO08x.hpp:96
BNO08xRptUncalMagnetometer uncal_magnetometer
Definition: BNO08x.hpp:78
BNO08xRptActivityClassifier activity_classifier
Definition: BNO08x.hpp:85
BNO08xRptIGyroRV rv_gyro_integrated
Definition: BNO08x.hpp:77
BNO08xRptUncalGyro uncal_gyro
Definition: BNO08x.hpp:79
BNO08xRptRVGeomag rv_geomagnetic
Definition: BNO08x.hpp:84
BNO08xRptGameRV rv_game
Definition: BNO08x.hpp:81
BNO08xRptShakeDetector shake_detector
Definition: BNO08x.hpp:97
BNO08xRptRawMEMSAccelerometer raw_accelerometer
Definition: BNO08x.hpp:92
bno08x_reports_t(BNO08xPrivateTypes::bno08x_sync_ctx_t *sync_ctx)
Definition: BNO08x.hpp:99
BNO08xRptRawMEMSMagnetometer raw_magnetometer
Definition: BNO08x.hpp:93
BNO08xRptAcceleration accelerometer
Definition: BNO08x.hpp:86
BNO08xRptLinearAcceleration linear_accelerometer
Definition: BNO08x.hpp:87
BNO08xRptCalGyro cal_gyro
Definition: BNO08x.hpp:90
BNO08xRptRV rv
Definition: BNO08x.hpp:80
BNO08xRptStepCounter step_counter
Definition: BNO08x.hpp:94
BNO08xRptGravity gravity
Definition: BNO08x.hpp:88
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