Remove unneeded options

This commit is contained in:
jpirnay
2026-05-13 21:10:02 +02:00
parent 60f326cb7f
commit 7f395ceb0f
7 changed files with 0 additions and 27 deletions
-2
View File
@@ -267,8 +267,6 @@ class CrossPointSettings {
uint8_t imageDithering = IMAGE_DITHER_BAYER;
// Tilt-based page turning (X3 only — requires QMI8658 IMU)
uint8_t tiltPageTurn = 0;
// Tilt input processing mode: 0 = raw accel, 1 = smoothed accel, 2 = gyro/accelerometer fusion
uint8_t tiltStabilization = 0;
// Action when the computed tilt value crosses the positive threshold.
uint8_t tiltPositiveAction = TILT_ACT_NEXT_PAGE;
// Action when the computed tilt value crosses the negative threshold.
-5
View File
@@ -230,11 +230,6 @@ inline const std::vector<SettingInfo> list = {
StrId::STR_CAT_CONTROLS)
.withSubmenu(StrId::STR_TILT_PAGE_TURN)
.withDeviceTarget(SettingDeviceTarget::X3),
SettingInfo::Enum(StrId::STR_TILT_STABILIZATION, &CrossPointSettings::tiltStabilization,
{StrId::STR_TILT_MODE_RAW, StrId::STR_TILT_MODE_SMOOTH, StrId::STR_TILT_MODE_KALMAN},
"tiltStabilization", StrId::STR_CAT_CONTROLS)
.withSubmenu(StrId::STR_TILT_PAGE_TURN)
.withDeviceTarget(SettingDeviceTarget::X3),
SettingInfo::Enum(StrId::STR_DIR_RIGHT, &CrossPointSettings::tiltPositiveAction,
{StrId::STR_NONE_OPT, StrId::STR_NEXT_PAGE, StrId::STR_PREV_PAGE}, "tiltPositiveAction",
StrId::STR_CAT_CONTROLS)