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

Disabled Dshot beacon by default.

This commit is contained in:
mikeller 2018-06-09 12:02:15 +12:00
parent c54b7e7db9
commit bdc2b48d36

View file

@ -22,6 +22,8 @@
#ifdef USE_BEEPER
#include "io/beeper.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
@ -31,5 +33,6 @@ PG_REGISTER_WITH_RESET_TEMPLATE(beeperConfig_t, beeperConfig, PG_BEEPER_CONFIG,
PG_RESET_TEMPLATE(beeperConfig_t, beeperConfig,
.dshotBeaconTone = 1,
.dshotBeaconOffFlags = DSHOT_BEACON_ALLOWED_MODES,
);
#endif