mirror of https://github.com/ArduPilot/ardupilot
22 lines
426 B
C
22 lines
426 B
C
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "AP_RCProtocol_config.h"
|
||
|
|
||
|
#if AP_RCPROTOCOL_MAVLINK_RADIO_ENABLED
|
||
|
|
||
|
#include "AP_RCProtocol.h"
|
||
|
|
||
|
|
||
|
class AP_RCProtocol_MAVLinkRadio : public AP_RCProtocol_Backend {
|
||
|
public:
|
||
|
|
||
|
using AP_RCProtocol_Backend::AP_RCProtocol_Backend;
|
||
|
|
||
|
// update from mavlink messages
|
||
|
void update_radio_rc_channels(const mavlink_radio_rc_channels_t* packet) override;
|
||
|
};
|
||
|
|
||
|
#endif // AP_RCPROTOCOL_MAVLINK_RADIO_ENABLED
|
||
|
|