mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 01:05:27 +03:00
Merge pull request #3920 from mikeller/inhibit_dshot_motor_beeping_when_motors_running
Inhibit Dshot motor beeping while motors are running (armed or motor test).
This commit is contained in:
commit
2f0a678cbe
5 changed files with 27 additions and 24 deletions
|
@ -376,7 +376,8 @@ uint32_t rcModeActivationMask;
|
|||
void mspSerialAllocatePorts(void) {}
|
||||
uint32_t getArmingBeepTimeMicros(void) {return 0;}
|
||||
uint16_t getBatteryVoltageLatest(void) {return 0;}
|
||||
uint8_t getMotorCount() {return 4;}
|
||||
uint8_t getMotorCount(void) {return 4;}
|
||||
bool areMotorsRunning(void) { return false; }
|
||||
bool IS_RC_MODE_ACTIVE(boxId_e) {return false;}
|
||||
bool isModeActivationConditionPresent(boxId_e) {return false;}
|
||||
uint32_t millis(void) {return 0;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue