mirror of https://github.com/ArduPilot/ardupilot
17 lines
324 B
C++
17 lines
324 B
C++
#pragma once
|
|
|
|
#include "AP_EFI.h"
|
|
#include "AP_EFI_Backend.h"
|
|
|
|
#if AP_EFI_SCRIPTING_ENABLED
|
|
|
|
class AP_EFI_Scripting : public AP_EFI_Backend {
|
|
public:
|
|
using AP_EFI_Backend::AP_EFI_Backend;
|
|
|
|
void update() override;
|
|
|
|
bool handle_scripting(const EFI_State &efi_state) override;
|
|
};
|
|
#endif // AP_EFI_SCRIPTING_ENABLED
|