1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

reduce less popular freqs in default hopper preset, make it faster

also add 303 mhz freq to default list
This commit is contained in:
MX
2025-07-07 04:16:58 +03:00
parent e025c57425
commit a547c946ab
2 changed files with 4 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ if you need your custom one, make sure it doesn't listed here
/* 300 - 348 */ /* 300 - 348 */
300000000, 300000000,
302757000, 302757000,
303000000,
303875000, 303875000,
303900000, 303900000,
304250000, 304250000,
@@ -100,10 +101,8 @@ Your frequencies will be added after default ones
### Default hopper list ### Default hopper list
``` ```
310000000,
315000000, 315000000,
318000000,
418000000,
433920000, 433920000,
434420000,
868350000, 868350000,
``` ```

View File

@@ -18,6 +18,7 @@ static const uint32_t subghz_frequency_list[] = {
/* 300 - 348 */ /* 300 - 348 */
300000000, 300000000,
302757000, 302757000,
303000000,
303875000, 303875000,
303900000, 303900000,
304250000, 304250000,
@@ -85,11 +86,9 @@ static const uint32_t subghz_frequency_list[] = {
}; };
static const uint32_t subghz_hopper_frequency_list[] = { static const uint32_t subghz_hopper_frequency_list[] = {
310000000,
315000000, 315000000,
318000000,
418000000,
433920000, 433920000,
434420000,
868350000, 868350000,
0, 0,
}; };