/*1This program is free software: you can redistribute it and/or modify2it under the terms of the GNU General Public License as published by3the Free Software Foundation, either version 3 of the License, or4(at your option) any later version.5This program is distributed in the hope that it will be useful,6but WITHOUT ANY WARRANTY; without even the implied warranty of7MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the8GNU General Public License for more details.9You should have received a copy of the GNU General Public License10along with this program. If not, see <http://www.gnu.org/licenses/>.11*/1213#pragma once1415#include "AP_EFI_config.h"1617#if AP_EFI_MAV_ENABLED1819#include "AP_EFI.h"20#include "AP_EFI_Backend.h"2122class AP_EFI_MAV : public AP_EFI_Backend {23public:24using AP_EFI_Backend::AP_EFI_Backend;2526void update() override;2728void handle_EFI_message(const mavlink_message_t &msg) override;2930private:31bool receivedNewData;32};3334#endif // AP_EFI_MAV_ENABLED353637