Fbt format

This commit is contained in:
MX 2023-02-12 23:58:16 +03:00
parent ca12057426
commit d247eb43de
No known key found for this signature in database
GPG Key ID: 7CCC66B7DBDD1C83
2 changed files with 13 additions and 8 deletions

View File

@ -57,8 +57,12 @@ static void archive_list_load_cb(void* context, uint32_t list_load_offset) {
false); false);
} }
static void static void archive_list_item_cb(
archive_list_item_cb(void* context, FuriString* item_path, uint32_t idx, bool is_folder, bool is_last) { void* context,
FuriString* item_path,
uint32_t idx,
bool is_folder,
bool is_last) {
furi_assert(context); furi_assert(context);
UNUSED(idx); UNUSED(idx);
ArchiveBrowserView* browser = (ArchiveBrowserView*)context; ArchiveBrowserView* browser = (ArchiveBrowserView*)context;

View File

@ -21,12 +21,13 @@
#define MAX_HISTORY 4 #define MAX_HISTORY 4
static const uint32_t subghz_frequency_list[] = { static const uint32_t subghz_frequency_list[] = {
300000000, 302757000, 303875000, 304250000, 307000000, 307500000, 307800000, 309000000, 300000000, 302757000, 303875000, 304250000, 307000000, 307500000, 307800000,
310000000, 312000000, 312100000, 313000000, 313850000, 314000000, 314350000, 314980000, 309000000, 310000000, 312000000, 312100000, 313000000, 313850000, 314000000,
315000000, 318000000, 330000000, 345000000, 348000000, 350000000, 387000000, 390000000, 314350000, 314980000, 315000000, 318000000, 330000000, 345000000, 348000000,
418000000, 433075000, 433220000, 433420000, 433657070, 433889000, 433920000, 434075000, 350000000, 387000000, 390000000, 418000000, 433075000, 433220000, 433420000,
434176948, 434390000, 434420000, 434775000, 438900000, 440175000, 464000000, 467750000, 779000000, 433657070, 433889000, 433920000, 434075000, 434176948, 434390000, 434420000,
868350000, 868400000, 868800000, 868950000, 906400000, 915000000, 925000000, 928000000}; 434775000, 438900000, 440175000, 464000000, 467750000, 779000000, 868350000,
868400000, 868800000, 868950000, 906400000, 915000000, 925000000, 928000000};
typedef enum { typedef enum {
SubGhzFrequencyAnalyzerStatusIDLE, SubGhzFrequencyAnalyzerStatusIDLE,