Merge pull request #6070 from mikeller/disable_dshot_beacon_by_default

Disabled Dshot beacon by default.
This commit is contained in:
Michael Keller 2018-06-09 14:32:39 +12:00 committed by GitHub
commit 32fc494827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

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