1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Inhibit Dshot motor beeping while motors are running (armed or motor test).

This commit is contained in:
mikeller 2017-08-22 22:54:55 +12:00
parent dfe868ef96
commit c8f528c0af
5 changed files with 27 additions and 24 deletions

View file

@ -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;}