Path: blob/master/libraries/AP_EFI/AP_EFI_Loweheiser.h
4182 views
/*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.56This program is distributed in the hope that it will be useful,7but WITHOUT ANY WARRANTY; without even the implied warranty of8MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9GNU General Public License for more details.1011You should have received a copy of the GNU General Public License12along with this program. If not, see <http://www.gnu.org/licenses/>.13*/1415#pragma once1617#include "AP_EFI_config.h"1819#if AP_EFI_LOWEHEISER_ENABLED2021#include "AP_EFI.h"22#include "AP_EFI_Backend.h"2324class AP_EFI_Loweheiser : public AP_EFI_Backend {25public:2627using AP_EFI_Backend::AP_EFI_Backend;2829void update() override;3031bool healthy() const override;3233};3435#endif // AP_EFI_LOWEHEISER_ENABLED363738