mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 15:38:29 -04:00
62 lines
2.1 KiB
C++
62 lines
2.1 KiB
C++
/*
|
|
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_TemperatureSensor.h"
|
|
|
|
#if AP_TEMPERATURE_SENSOR_ENABLED
|
|
#include "AP_TemperatureSensor_Backend.h"
|
|
|
|
#include <AP_Logger/AP_Logger.h>
|
|
|
|
/*
|
|
base class constructor.
|
|
This incorporates initialisation as well.
|
|
*/
|
|
AP_TemperatureSensor_Backend::AP_TemperatureSensor_Backend(AP_TemperatureSensor &front,
|
|
AP_TemperatureSensor::TemperatureSensor_State &state,
|
|
AP_TemperatureSensor_Params ¶ms):
|
|
_front(front),
|
|
_state(state),
|
|
_params(params)
|
|
{
|
|
}
|
|
|
|
// returns true if a temperature has been recently updated
|
|
bool AP_TemperatureSensor_Backend::healthy(void) const
|
|
{
|
|
return (_state.last_time_ms > 0) && (AP_HAL::millis() - _state.last_time_ms < 5000);
|
|
}
|
|
|
|
void AP_TemperatureSensor_Backend::Log_Write_TEMP() const
|
|
{
|
|
AP::logger().Write("TEMP",
|
|
"TimeUS," "Instance," "Temp" , // labels
|
|
"s" "#" "O" , // units
|
|
"F" "-" "0" , // multipliers
|
|
"Q" "B" "f" , // types
|
|
AP_HAL::micros64(), _state.instance, _state.temperature);
|
|
}
|
|
|
|
void AP_TemperatureSensor_Backend::set_temperature(const float temperature)
|
|
{
|
|
{
|
|
WITH_SEMAPHORE(_sem);
|
|
_state.temperature = temperature;
|
|
_state.last_time_ms = AP_HAL::millis();
|
|
}
|
|
}
|
|
|
|
#endif // AP_TEMPERATURE_SENSOR_ENABLED
|