mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
4ffffa7af7
* remove unnecessary nullptr check, these are always called from an initialized AP_DroneCAN so if it's nullptr something has gone horrifically wrong * pass in driver index instead of repeatedly calling function to get it * simplify error handling; knowing exactly which allocation failed is not super helpful and one failing likely means subsequent ones will too, as it can only fail due to being out of memory
53 lines
1.8 KiB
C++
53 lines
1.8 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "AP_TemperatureSensor_config.h"
|
|
|
|
#if AP_TEMPERATURE_SENSOR_DRONECAN_ENABLED
|
|
|
|
#include "AP_TemperatureSensor_Backend.h"
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include <AP_DroneCAN/AP_DroneCAN.h>
|
|
|
|
class AP_TemperatureSensor_DroneCAN : public AP_TemperatureSensor_Backend {
|
|
public:
|
|
AP_TemperatureSensor_DroneCAN(AP_TemperatureSensor &front, AP_TemperatureSensor::TemperatureSensor_State &state, AP_TemperatureSensor_Params ¶ms);
|
|
|
|
static bool subscribe_msgs(AP_DroneCAN* ap_dronecan);
|
|
|
|
// Don't do anything in update, but still need to override the pure virtual method.
|
|
void update(void) override {};
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
private:
|
|
|
|
static void handle_temperature(AP_DroneCAN *ap_dronecan, const CanardRxTransfer& transfer, const uavcan_equipment_device_Temperature &msg);
|
|
|
|
// Static list of drivers
|
|
static AP_TemperatureSensor_DroneCAN *_drivers[AP_TEMPERATURE_SENSOR_MAX_INSTANCES];
|
|
static uint8_t _driver_instance;
|
|
static HAL_Semaphore _driver_sem;
|
|
|
|
// DroneCAN temperature ID to listen for
|
|
AP_Int32 _ID;
|
|
|
|
};
|
|
|
|
#endif // AP_TEMPERATURE_SENSOR_DRONECAN_ENABLED
|