mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_F4Light: added mask to set_output_mode()
this allows for some groups using dshot and some not
This commit is contained in:
parent
4350cee7cf
commit
4fb53d44f3
|
@ -56,7 +56,7 @@ public:
|
|||
|
||||
static void lateInit(); // 2nd stage with loaded parameters
|
||||
|
||||
void set_output_mode(enum output_mode mode) override { _set_output_mode(mode); };
|
||||
void set_output_mode(uint16_t mask, enum output_mode mode) override { _set_output_mode(mode); };
|
||||
|
||||
static void _set_output_mode(enum output_mode mode);
|
||||
|
||||
|
|
Loading…
Reference in New Issue