diff --git a/src/main/config/config_master.h b/src/main/config/config_master.h index 5c09a7695..b9ec1d33a 100644 --- a/src/main/config/config_master.h +++ b/src/main/config/config_master.h @@ -27,8 +27,6 @@ typedef struct master_t { uint32_t enabledFeatures; uint8_t emf_avoidance; // change pll settings to avoid noise in the uhf band - beeperOffConditions_t beeper_off; - // motor/esc/servo related stuff motorMixer_t customMotorMixer[MAX_SUPPORTED_MOTORS]; escAndServoConfig_t escAndServoConfig; diff --git a/src/main/io/serial_cli.c b/src/main/io/serial_cli.c index 94c97295c..6595b1f0f 100644 --- a/src/main/io/serial_cli.c +++ b/src/main/io/serial_cli.c @@ -765,8 +765,6 @@ const clivalue_t valueTable[] = { { "blackbox_device", VAR_UINT8 | MASTER_VALUE | MODE_LOOKUP, &masterConfig.blackbox_device, .config.lookup = { TABLE_BLACKBOX_DEVICE } }, #endif - { "beeper_off_flags", VAR_UINT32 | MASTER_VALUE, &masterConfig.beeper_off.flags, .config.minmax = {BEEPER_OFF_FLAGS_MIN, BEEPER_OFF_FLAGS_MAX }}, - { "magzero_x", VAR_INT16 | MASTER_VALUE, &masterConfig.magZero.raw[X], .config.minmax = { -32768, 32767 } }, { "magzero_y", VAR_INT16 | MASTER_VALUE, &masterConfig.magZero.raw[Y], .config.minmax = { -32768, 32767 } }, { "magzero_z", VAR_INT16 | MASTER_VALUE, &masterConfig.magZero.raw[Z], .config.minmax = { -32768, 32767 } },