ardupilot/libraries/AP_RCProtocol/AP_RCProtocol_MAVLinkRadio.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
426 B
C
Raw Normal View History

#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