mirror of
https://github.com/kamilsss655/uv-k5-firmware-custom
synced 2024-11-21 09:49:06 +00:00
F Lock PMR446
Add submenu to F Lock. Limit TX to PMR446 frequencies (44600625 - 4619375).
This commit is contained in:
parent
8f785ec547
commit
479cd850a7
@ -208,6 +208,11 @@ int TX_freq_check(const uint32_t Frequency)
|
||||
return 0;
|
||||
break;
|
||||
|
||||
case F_LOCK_PMR:
|
||||
if (Frequency >= 44600625 && Frequency <= 44619375)
|
||||
return 0;
|
||||
break;
|
||||
|
||||
case F_LOCK_ALL:
|
||||
break;
|
||||
}
|
||||
|
@ -46,6 +46,7 @@ enum {
|
||||
F_LOCK_GB,
|
||||
F_LOCK_430,
|
||||
F_LOCK_438,
|
||||
F_LOCK_PMR,
|
||||
F_LOCK_ALL, // disable TX on all frequencies, scanner mode
|
||||
F_LOCK_LEN
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user