2017-06-21 14:39:07 -03:00
|
|
|
#include "AP_Compass_SITL.h"
|
|
|
|
|
2022-10-26 06:21:36 -03:00
|
|
|
#if AP_COMPASS_SITL_ENABLED
|
2021-10-29 22:15:48 -03:00
|
|
|
|
2017-06-21 14:39:07 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2018-08-06 20:08:09 -03:00
|
|
|
AP_Compass_SITL::AP_Compass_SITL()
|
|
|
|
: _sitl(AP::sitl())
|
2017-06-21 14:39:07 -03:00
|
|
|
{
|
|
|
|
if (_sitl != nullptr) {
|
2019-11-20 03:18:10 -04:00
|
|
|
for (uint8_t i=0; i<MAX_CONNECTED_MAGS; i++) {
|
|
|
|
uint32_t dev_id = _sitl->mag_devid[i];
|
|
|
|
if (dev_id == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uint8_t instance;
|
|
|
|
if (!register_compass(dev_id, instance)) {
|
|
|
|
continue;
|
|
|
|
} else if (_num_compass<MAX_SITL_COMPASSES) {
|
|
|
|
_compass_instance[_num_compass] = instance;
|
|
|
|
set_dev_id(_compass_instance[_num_compass], dev_id);
|
|
|
|
|
2023-09-20 19:58:03 -03:00
|
|
|
if (_sitl->mag_save_ids) {
|
|
|
|
// save so the compass always comes up configured in SITL
|
|
|
|
save_dev_id(_compass_instance[_num_compass]);
|
|
|
|
}
|
2020-05-07 03:44:47 -03:00
|
|
|
set_rotation(instance, ROTATION_NONE);
|
2019-11-20 03:18:10 -04:00
|
|
|
_num_compass++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scroll through the registered compasses, and set the offsets
|
|
|
|
for (uint8_t i=0; i<_num_compass; i++) {
|
2019-09-05 07:18:54 -03:00
|
|
|
if (_compass.get_offsets(i).is_zero()) {
|
2020-05-12 15:05:33 -03:00
|
|
|
_compass.set_offsets(i, _sitl->mag_ofs[i]);
|
2019-09-05 07:18:54 -03:00
|
|
|
}
|
2017-06-21 14:39:07 -03:00
|
|
|
}
|
2020-09-16 19:04:39 -03:00
|
|
|
|
|
|
|
// we want to simulate a calibrated compass by default, so set
|
|
|
|
// scale to 1
|
2021-12-04 00:22:56 -04:00
|
|
|
AP_Param::set_default_by_name("COMPASS_SCALE", 1);
|
|
|
|
AP_Param::set_default_by_name("COMPASS_SCALE2", 1);
|
|
|
|
AP_Param::set_default_by_name("COMPASS_SCALE3", 1);
|
2020-09-16 19:04:39 -03:00
|
|
|
|
2018-07-16 05:20:37 -03:00
|
|
|
// make first compass external
|
|
|
|
set_external(_compass_instance[0], true);
|
2018-07-16 23:56:44 -03:00
|
|
|
|
2017-06-21 14:39:07 -03:00
|
|
|
hal.scheduler->register_timer_process(FUNCTOR_BIND(this, &AP_Compass_SITL::_timer, void));
|
2018-07-16 23:56:44 -03:00
|
|
|
}
|
|
|
|
}
|
2018-07-16 05:20:37 -03:00
|
|
|
|
2018-07-16 23:56:44 -03:00
|
|
|
|
|
|
|
/*
|
2023-10-11 04:41:52 -03:00
|
|
|
create correction matrix for diagonals and off-diagonals
|
2018-07-16 23:56:44 -03:00
|
|
|
*/
|
2020-05-12 15:05:33 -03:00
|
|
|
void AP_Compass_SITL::_setup_eliptical_correcion(uint8_t i)
|
2018-07-16 23:56:44 -03:00
|
|
|
{
|
2020-05-12 15:05:33 -03:00
|
|
|
Vector3f diag = _sitl->mag_diag[i].get();
|
2018-07-16 23:56:44 -03:00
|
|
|
if (diag.is_zero()) {
|
2020-06-04 02:54:29 -03:00
|
|
|
diag = {1,1,1};
|
2018-07-16 23:56:44 -03:00
|
|
|
}
|
|
|
|
const Vector3f &diagonals = diag;
|
2020-05-12 15:05:33 -03:00
|
|
|
const Vector3f &offdiagonals = _sitl->mag_offdiag[i];
|
2018-07-16 23:56:44 -03:00
|
|
|
|
|
|
|
if (diagonals == _last_dia && offdiagonals == _last_odi) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_eliptical_corr = Matrix3f(diagonals.x, offdiagonals.x, offdiagonals.y,
|
|
|
|
offdiagonals.x, diagonals.y, offdiagonals.z,
|
|
|
|
offdiagonals.y, offdiagonals.z, diagonals.z);
|
|
|
|
if (!_eliptical_corr.invert()) {
|
|
|
|
_eliptical_corr.identity();
|
2017-06-21 14:39:07 -03:00
|
|
|
}
|
2018-07-16 23:56:44 -03:00
|
|
|
_last_dia = diag;
|
|
|
|
_last_odi = offdiagonals;
|
2017-06-21 14:39:07 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void AP_Compass_SITL::_timer()
|
|
|
|
{
|
|
|
|
// TODO: Refactor delay buffer with AP_Baro_SITL.
|
|
|
|
|
|
|
|
// Sampled at 100Hz
|
|
|
|
uint32_t now = AP_HAL::millis();
|
|
|
|
if ((now - _last_sample_time) < 10) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_last_sample_time = now;
|
|
|
|
|
|
|
|
// calculate sensor noise and add to 'truth' field in body frame
|
|
|
|
// units are milli-Gauss
|
|
|
|
Vector3f noise = rand_vec3f() * _sitl->mag_noise;
|
|
|
|
Vector3f new_mag_data = _sitl->state.bodyMagField + noise;
|
|
|
|
|
|
|
|
// add delay
|
|
|
|
uint32_t best_time_delta = 1000; // initialise large time representing buffer entry closest to current time - delay.
|
|
|
|
uint8_t best_index = 0; // initialise number representing the index of the entry in buffer closest to delay.
|
|
|
|
|
|
|
|
// storing data from sensor to buffer
|
|
|
|
if (now - last_store_time >= 10) { // store data every 10 ms.
|
|
|
|
last_store_time = now;
|
|
|
|
if (store_index > buffer_length-1) { // reset buffer index if index greater than size of buffer
|
|
|
|
store_index = 0;
|
|
|
|
}
|
|
|
|
buffer[store_index].data = new_mag_data; // add data to current index
|
|
|
|
buffer[store_index].time = last_store_time; // add time to current index
|
|
|
|
store_index = store_index + 1; // increment index
|
|
|
|
}
|
|
|
|
|
|
|
|
// return delayed measurement
|
|
|
|
uint32_t delayed_time = now - _sitl->mag_delay; // get time corresponding to delay
|
|
|
|
// find data corresponding to delayed time in buffer
|
|
|
|
for (uint8_t i=0; i<=buffer_length-1; i++) {
|
|
|
|
// find difference between delayed time and time stamp in buffer
|
|
|
|
uint32_t time_delta = abs((int32_t)(delayed_time - buffer[i].time));
|
|
|
|
// if this difference is smaller than last delta, store this time
|
|
|
|
if (time_delta < best_time_delta) {
|
|
|
|
best_index= i;
|
|
|
|
best_time_delta = time_delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (best_time_delta < 1000) { // only output stored state if < 1 sec retrieval error
|
|
|
|
new_mag_data = buffer[best_index].data;
|
|
|
|
}
|
|
|
|
|
2019-11-20 03:18:10 -04:00
|
|
|
for (uint8_t i=0; i<_num_compass; i++) {
|
2020-05-12 15:05:33 -03:00
|
|
|
_setup_eliptical_correcion(i);
|
|
|
|
Vector3f f = (_eliptical_corr * new_mag_data) - _sitl->mag_ofs[i].get();
|
|
|
|
// rotate compass
|
|
|
|
f.rotate_inverse((enum Rotation)_sitl->mag_orient[i].get());
|
2021-11-05 13:11:09 -03:00
|
|
|
f.rotate(get_board_orientation());
|
2020-08-27 23:26:58 -03:00
|
|
|
// scale the compass to simulate sensor scale factor errors
|
|
|
|
f *= _sitl->mag_scaling[i];
|
|
|
|
|
|
|
|
switch (_sitl->mag_fail[i]) {
|
|
|
|
case 0:
|
|
|
|
accumulate_sample(f, _compass_instance[i], 10);
|
|
|
|
_last_data[i] = f;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
// no data
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// frozen compass
|
|
|
|
accumulate_sample(_last_data[i], _compass_instance[i], 10);
|
|
|
|
break;
|
2018-07-16 05:20:37 -03:00
|
|
|
}
|
2017-06-21 14:39:07 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AP_Compass_SITL::read()
|
|
|
|
{
|
2019-11-20 03:18:10 -04:00
|
|
|
for (uint8_t i=0; i<_num_compass; i++) {
|
2018-10-16 05:26:29 -03:00
|
|
|
drain_accumulated_samples(_compass_instance[i], nullptr);
|
2017-06-21 14:39:07 -03:00
|
|
|
}
|
|
|
|
}
|
2022-10-26 06:21:36 -03:00
|
|
|
#endif // AP_COMPASS_SITL_ENABLED
|