esp32_BNO08x/source/report/BNO08xRptRV.cpp

71 lines
1.6 KiB
C++

/**
* @file BNO08xRptRV.cpp
* @author Myles Parfeniuk
*/
#include "BNO08xRptRV.hpp"
#include "BNO08x.hpp"
/**
* @brief Updates rotation vector data from decoded sensor event.
*
* @param sensor_val The sh2_SensorValue_t struct used in sh2_decodeSensorEvent() call.
*
* @return void, nothing to return
*/
void BNO08xRptRV::update_data(sh2_SensorValue_t* sensor_val)
{
imu->lock_user_data();
data = sensor_val->un.rotationVector;
data.accuracy = static_cast<BNO08xAccuracy>(sensor_val->status);
imu->unlock_user_data();
if (rpt_bit & xEventGroupGetBits(imu->evt_grp_report_en))
signal_data_available();
}
/**
* @brief Tares rotation vector axis.
*
* @param x If true tare x axis (optional, default true).
* @param y If true tare y axis (optional, default true).
* @param z If true tare z axis (optional, default true).
*
* @return True if tare operation succeeded.
*/
bool BNO08xRptRV::tare(bool x, bool y, bool z)
{
return BNO08xRptRVGeneric::tare(x, y, z, SH2_TARE_BASIS_ROTATION_VECTOR);
}
/**
* @brief Saves most recent tare operation to BNO08x internal flash, such that it persists on reset.
*
* @return True if tare operation succeeded.
*/
bool BNO08xRptRV::tare_persist()
{
int success = SH2_ERR;
imu->lock_sh2_HAL();
success = sh2_persistTare();
imu->unlock_sh2_HAL();
if (success != SH2_OK)
return false;
else
return true;
}
/**
* @brief Clears most recent tare operation.
*
* @return void, nothing to return
*/
void BNO08xRptRV::tare_clear()
{
imu->lock_sh2_HAL();
sh2_clearTare();
imu->unlock_sh2_HAL();
}