Allow 467.75 MHz by default

This commit is contained in:
MX 2023-02-12 02:48:20 +03:00
parent 02fad884fb
commit 08acbda895
No known key found for this signature in database
GPG Key ID: 7CCC66B7DBDD1C83

View File

@ -424,8 +424,8 @@ bool furi_hal_subghz_is_tx_allowed(uint32_t value) {
flipper_format_free(fff_data_file);
furi_record_close(RECORD_STORAGE);
if(!(value >= 299999755 && value <= 350000335) &&
!(value >= 386999938 && value <= 464000000) &&
if(!(value >= 299999755 && value <= 350000335) && // was increased from 348 to 350
!(value >= 386999938 && value <= 467750000) && // was increased from 464 to 467.75
!(value >= 778999847 && value <= 928000000) && !(is_extended)) {
FURI_LOG_I(TAG, "Frequency blocked - outside default range");
return false;