Skip to content

Commit b5da577

Browse files
Merge pull request #11199 from sensei-hacker/fix-blueberry-disable-dynamic-notch
BLUEBERRYF435WING: Disable dynamic notch filter by default
2 parents 880c89a + b7bfdee commit b5da577

File tree

1 file changed

+8
-0
lines changed
  • src/main/target/BLUEBERRYF435WING

1 file changed

+8
-0
lines changed

src/main/target/BLUEBERRYF435WING/config.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "fc/fc_msp_box.h"
3131
#include "io/serial.h"
3232
#include "io/piniobox.h"
33+
#include "sensors/gyro.h"
3334

3435
void targetConfiguration(void)
3536
{
@@ -38,4 +39,11 @@ void targetConfiguration(void)
3839
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART1)].functionMask = FUNCTION_MSP;
3940
serialConfigMutable()->portConfigs[findSerialPortIndexByIdentifier(SERIAL_PORT_USART1)].msp_baudrateIndex = BAUD_115200;
4041
//pinioBoxConfigMutable()->permanentId[0] = BOX_PERMANENT_ID_USER1;
42+
43+
#ifdef USE_DYNAMIC_FILTERS
44+
// Disable dynamic notch filter by default (performance optimization for wing)
45+
// This board is performance-constrained and wing aircraft typically don't need
46+
// dynamic notch filtering (designed for multirotor motor noise)
47+
gyroConfigMutable()->dynamicGyroNotchEnabled = 0;
48+
#endif
4149
}

0 commit comments

Comments
 (0)