ardupilot/libraries/AP_EFI/AP_EFI_Backend.h

59 lines
1.7 KiB
C
Raw Normal View History

2018-03-28 20:37:58 -03: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/>.
*/
#pragma once
#include "AP_EFI.h"
#include "AP_EFI_State.h"
2022-02-28 21:19:08 -04:00
#include <AP_HAL/Semaphores.h>
#include <AP_Scripting/AP_Scripting_config.h>
2023-06-27 05:02:59 -03:00
#include <GCS_MAVLink/GCS_MAVLink.h>
2018-03-28 20:37:58 -03:00
class AP_EFI; //forward declaration
class AP_EFI_Backend {
public:
// Constructor with initialization
AP_EFI_Backend(AP_EFI &_frontend);
// Virtual destructor that efi backends can override
virtual ~AP_EFI_Backend(void) {}
// Update the state structure
virtual void update() = 0;
2023-06-27 05:02:59 -03:00
virtual void handle_EFI_message(const mavlink_message_t &msg) {};
2022-09-04 04:15:49 -03:00
#if AP_SCRIPTING_ENABLED
virtual bool handle_scripting(const EFI_State &efi_state) { return false; }
2022-09-04 04:15:49 -03:00
#endif
2018-03-28 20:37:58 -03:00
protected:
// Copies internal state to the frontend state
void copy_to_frontend();
// Internal state for this driver (before copying to frontend)
EFI_State internal_state;
2023-04-08 01:27:51 -03:00
int8_t get_dronecan_node_id(void) const;
2018-03-28 20:37:58 -03:00
float get_coef1(void) const;
float get_coef2(void) const;
float get_ecu_fuel_density(void) const;
2018-03-28 20:37:58 -03:00
2022-06-03 19:09:58 -03:00
HAL_Semaphore &get_sem(void);
2018-03-28 20:37:58 -03:00
private:
AP_EFI &frontend;
};