2017-03-01 07:17:45 -04:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "AP_VisualOdom_Backend.h"
|
2020-04-06 00:17:42 -03:00
|
|
|
|
|
|
|
#if HAL_VISUALODOM_ENABLED
|
|
|
|
|
2020-03-26 01:38:51 -03:00
|
|
|
#include <AP_Logger/AP_Logger.h>
|
|
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
|
|
|
|
extern const AP_HAL::HAL &hal;
|
2017-03-01 07:17:45 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
base class constructor.
|
|
|
|
This incorporates initialisation as well.
|
|
|
|
*/
|
|
|
|
AP_VisualOdom_Backend::AP_VisualOdom_Backend(AP_VisualOdom &frontend) :
|
|
|
|
_frontend(frontend)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-30 02:30:42 -03:00
|
|
|
// return true if sensor is basically healthy (we are receiving data)
|
|
|
|
bool AP_VisualOdom_Backend::healthy() const
|
2017-03-01 07:17:45 -04:00
|
|
|
{
|
2020-03-30 02:30:42 -03:00
|
|
|
// healthy if we have received sensor messages within the past 300ms
|
|
|
|
return ((AP_HAL::millis() - _last_update_ms) < AP_VISUALODOM_TIMEOUT_MS);
|
2017-03-01 07:17:45 -04:00
|
|
|
}
|
2020-04-06 00:17:42 -03:00
|
|
|
|
2020-04-10 01:36:26 -03:00
|
|
|
// returns the system time of the last reset if reset_counter has not changed
|
|
|
|
// updates the reset timestamp to the current system time if the reset_counter has changed
|
|
|
|
uint32_t AP_VisualOdom_Backend::get_reset_timestamp_ms(uint8_t reset_counter)
|
|
|
|
{
|
|
|
|
// update reset counter and timestamp if reset_counter has changed
|
|
|
|
if (reset_counter != _last_reset_counter) {
|
|
|
|
_last_reset_counter = reset_counter;
|
|
|
|
_reset_timestamp_ms = AP_HAL::millis();
|
|
|
|
}
|
|
|
|
return _reset_timestamp_ms;
|
|
|
|
}
|
|
|
|
|
2020-04-06 00:17:42 -03:00
|
|
|
#endif
|