esp32_BNO08x/source/report/BNO08xRptAcceleration.cpp

52 lines
1.4 KiB
C++

/**
* @file BNO08xRptAcceleration.cpp
* @author Myles Parfeniuk
*/
#include "BNO08xRptAcceleration.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 BNO08xRptAcceleration::update_data(sh2_SensorValue_t* sensor_val)
{
lock_user_data();
data = sensor_val->un.accelerometer;
data.accuracy = static_cast<BNO08xAccuracy>(sensor_val->status);
unlock_user_data();
if (rpt_bit & xEventGroupGetBits(sync_ctx->evt_grp_rpt_en))
signal_data_available();
}
/**
* @brief Enables 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 BNO08xRptAcceleration::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 BNO08xRptAcceleration::get()
{
lock_user_data();
bno08x_accel_t rqdata = data;
unlock_user_data();
return rqdata;
}