Remove redundant 1750(rely on button when TX)
All checks were successful
Build Firmware / build (push) Successful in 20s

This commit is contained in:
2025-04-01 17:48:00 +02:00
parent c0d3ba51a2
commit bbeb1d8fab
7 changed files with 3 additions and 69 deletions

View File

@@ -61,11 +61,6 @@ static void ACTION_Scan_FM(bool bRestart);
static void ACTION_AlarmOr1750(bool b1750);
inline static void ACTION_Alarm() { ACTION_AlarmOr1750(false); }
inline static void ACTION_1750() { ACTION_AlarmOr1750(true); };
inline static void ACTION_SSTV() {
gFlagPrepareTX = gAlarmState != ALARM_STATE_OFF;
gAlarmState = ALARM_STATE_SSTV;
};
#endif
inline static void ACTION_ScanRestart() { ACTION_Scan(true); };
@@ -110,8 +105,6 @@ void (*action_opt_table[])(void) = {
[ACTION_OPT_1750] = &FUNCTION_NOP,
#endif
[ACTION_REQ_SSTV] = &ACTION_SSTV,
#ifdef ENABLE_BLMIN_TMP_OFF
[ACTION_OPT_BLMIN_TMP_OFF] = &ACTION_BlminTmpOff,
#else