From bdc2b48d363ce400c19fe6940b64d4e837db43fe Mon Sep 17 00:00:00 2001 From: mikeller Date: Sat, 9 Jun 2018 12:02:15 +1200 Subject: [PATCH] Disabled Dshot beacon by default. --- src/main/pg/beeper.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/pg/beeper.c b/src/main/pg/beeper.c index b97d07a35c..0b17c6365f 100644 --- a/src/main/pg/beeper.c +++ b/src/main/pg/beeper.c @@ -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