2019-11-07 00:03:44 -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/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Base class for serial rangefinders
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SIM_SerialRangeFinder.h"
|
|
|
|
|
|
|
|
using namespace SITL;
|
|
|
|
|
|
|
|
void SerialRangeFinder::update(float range)
|
|
|
|
{
|
2019-11-08 05:19:55 -04:00
|
|
|
// just send a chunk of data at 5Hz:
|
2019-11-07 00:03:44 -04:00
|
|
|
const uint32_t now = AP_HAL::millis();
|
2019-11-08 05:19:55 -04:00
|
|
|
if (now - last_sent_ms < reading_interval_ms()) {
|
2019-11-07 00:03:44 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
last_sent_ms = now;
|
|
|
|
|
2020-08-04 00:47:24 -03:00
|
|
|
const uint16_t range_cm = uint16_t(range*100);
|
2019-11-07 00:03:44 -04:00
|
|
|
uint8_t data[255];
|
2020-08-04 00:47:24 -03:00
|
|
|
const uint32_t packetlen = packet_for_alt(range_cm,
|
2019-11-07 00:03:44 -04:00
|
|
|
data,
|
|
|
|
ARRAY_SIZE(data));
|
|
|
|
|
|
|
|
write_to_autopilot((char*)data, packetlen);
|
|
|
|
}
|