ardupilot/libraries/AP_EFI/AP_EFI_Currawong_ECU.h

52 lines
1.3 KiB
C
Raw Normal View History

2022-03-30 00:16:37 -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/>.
*/
/*
* AP_EFI_Currawong_ECU.h
*
* Author: Reilly Callaway / Currawong Engineering Pty Ltd
2022-03-30 00:16:37 -03:00
*/
#pragma once
2023-03-15 20:05:59 -03:00
#include "AP_EFI_config.h"
2022-03-30 00:16:37 -03:00
2023-03-15 20:05:59 -03:00
#if AP_EFI_CURRAWONG_ECU_ENABLED
2022-03-30 00:16:37 -03:00
2023-03-15 20:05:59 -03:00
#include "AP_EFI.h"
#include "AP_EFI_Backend.h"
2022-03-30 00:16:37 -03:00
class AP_EFI_Currawong_ECU : public AP_EFI_Backend {
public:
AP_EFI_Currawong_ECU(AP_EFI &_frontend);
void update() override;
static AP_EFI_Currawong_ECU* get_instance(void)
{
return _singleton;
2022-03-30 00:16:37 -03:00
}
private:
bool handle_message(AP_HAL::CANFrame &frame);
static AP_EFI_Currawong_ECU* _singleton;
2022-03-30 00:16:37 -03:00
friend class AP_PiccoloCAN;
};
2023-03-15 20:05:59 -03:00
#endif // AP_EFI_CURRAWONG_ECU_ENABLED
2022-03-30 00:16:37 -03:00