mirror of https://github.com/ArduPilot/ardupilot
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <RC_Channel/RC_Channel.h>
|
|
#include "Fins.h"
|
|
#include "mode.h" //this includes Blimp.h which includes Fins.h
|
|
|
|
class RC_Channel_Blimp : public RC_Channel
|
|
{
|
|
|
|
public:
|
|
|
|
protected:
|
|
|
|
void init_aux_function(aux_func_t ch_option, AuxSwitchPos) override;
|
|
bool do_aux_function(aux_func_t ch_option, AuxSwitchPos) override;
|
|
|
|
private:
|
|
|
|
void do_aux_function_change_mode(const Mode::Number mode,
|
|
const AuxSwitchPos ch_flag);
|
|
void do_aux_function_change_air_mode(const AuxSwitchPos ch_flag);
|
|
|
|
// called when the mode switch changes position:
|
|
void mode_switch_changed(modeswitch_pos_t new_pos) override;
|
|
|
|
};
|
|
|
|
class RC_Channels_Blimp : public RC_Channels
|
|
{
|
|
public:
|
|
|
|
bool has_valid_input() const override;
|
|
bool in_rc_failsafe() const override;
|
|
|
|
RC_Channel *get_arming_channel(void) const override;
|
|
|
|
RC_Channel_Blimp obj_channels[NUM_RC_CHANNELS];
|
|
RC_Channel_Blimp *channel(const uint8_t chan) override
|
|
{
|
|
if (chan >= NUM_RC_CHANNELS) {
|
|
return nullptr;
|
|
}
|
|
return &obj_channels[chan];
|
|
}
|
|
|
|
protected:
|
|
|
|
int8_t flight_mode_channel_number() const override;
|
|
|
|
};
|