AP_HAL: add accessor for disabled channels to RCOutput

This commit is contained in:
Andy Piper 2022-04-19 18:15:53 +01:00 committed by Randy Mackay
parent a673a481fd
commit 007174d36a
1 changed files with 5 additions and 0 deletions

View File

@ -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
*/