/** * @file BNO08xRptLinearAcceleration.cpp * @author Myles Parfeniuk */ #include "BNO08xRptLinearAcceleration.hpp" /** * @brief Updates accelerometer data from decoded sensor event. * * @param sensor_val The sh2_SensorValue_t struct used in sh2_decodeSensorEvent() call. * * @return void, nothing to return */ void BNO08xRptLinearAcceleration::update_data(sh2_SensorValue_t* sensor_val) { lock_user_data(); data = sensor_val->un.linearAcceleration; data.accuracy = static_cast(sensor_val->status); unlock_user_data(); if (rpt_bit & xEventGroupGetBits(sync_ctx->evt_grp_rpt_en)) signal_data_available(); } /** * @brief Enables linear acceleration reports such that the BNO08x begins sending them. * * @param report_period_us The period/interval of the report in microseconds. * @param sensor_cfg Sensor special configuration (optional, see * BNO08xPrivateTypes::default_sensor_cfg for defaults). * * @return True if report was successfully enabled. */ bool BNO08xRptLinearAcceleration::enable(uint32_t time_between_reports, sh2_SensorConfig_t sensor_cfg) { return BNO08xRpt::rpt_enable(time_between_reports, sensor_cfg); } /** * @brief Grabs most recent acceleration data (including gravity), units are in m/s^2. * * @return Struct containing requested data. */ bno08x_accel_t BNO08xRptLinearAcceleration::get() { lock_user_data(); bno08x_accel_t rqdata = data; unlock_user_data(); return rqdata; }