mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: add accessor for disabled channels to RCOutput
This commit is contained in:
parent
a673a481fd
commit
007174d36a
|
@ -249,6 +249,11 @@ public:
|
|||
*/
|
||||
virtual bool get_output_mode_banner(char banner_msg[], uint8_t banner_msg_len) const { return false; }
|
||||
|
||||
/*
|
||||
* return mask of channels that must be disabled because they share a group with a digital channel
|
||||
*/
|
||||
virtual uint16_t get_disabled_channels(uint16_t digital_mask) { return 0; }
|
||||
|
||||
/*
|
||||
set default update rate
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue