going back to WFM as main baseband in main.cpp as NFM is now making the apps crashing. Looks like last additions to WFM made it bigger. (#2646)

This commit is contained in:
gullradriel 2025-05-06 10:50:59 +02:00 committed by GitHub
parent 4342f5c0ee
commit d4342e01a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ __attribute__((section(".external_app.app_gfxeq.application_information"), used)
ui::Color::green().v, ui::Color::green().v,
app_location_t::RX, app_location_t::RX,
-1, -1,
{'P', 'N', 'F', 'M'}, {'P', 'W', 'F', 'M'},
0x00000000, 0x00000000,
}; };

View file

@ -77,8 +77,8 @@ __attribute__((section(".external_app.app_level.application_information"), used)
/*.menu_location = */ app_location_t::RX, /*.menu_location = */ app_location_t::RX,
/*.desired_menu_position = */ -1, /*.desired_menu_position = */ -1,
// this has to be the biggest baseband used by the app. Level is using AM,WFM,NFM,AMFM,SPEC and NFM is the biggest // this has to be the biggest baseband used by the app. Level is using AM,WFM,NFM,AMFM,SPEC and WFM is the biggest
/*.m4_app_tag = portapack::spi_flash::image_tag_nfm */ {'P', 'N', 'F', 'M'}, /*.m4_app_tag = portapack::spi_flash::image_tag_nfm */ {'P', 'W', 'F', 'M'},
/*.m4_app_offset = */ 0x00000000, // will be filled at compile time /*.m4_app_offset = */ 0x00000000, // will be filled at compile time
}; };
} }

View file

@ -44,8 +44,8 @@ __attribute__((section(".external_app.app_scanner.application_information"), use
/*.menu_location = */ app_location_t::RX, /*.menu_location = */ app_location_t::RX,
/*.desired_menu_position = */ -1, /*.desired_menu_position = */ -1,
// this has to be the biggest baseband used by the app. Scanner is using AM,WFM,NFM and NFM is the biggest // this has to be the biggest baseband used by the app. Scanner is using AM,WFM,NFM and WFM is the biggest
/*.m4_app_tag = portapack::spi_flash::image_tag_scanner */ {'P', 'N', 'F', 'M'}, /*.m4_app_tag = portapack::spi_flash::image_tag_scanner */ {'P', 'W', 'F', 'M'},
/*.m4_app_offset = */ 0x00000000, // will be filled at compile time /*.m4_app_offset = */ 0x00000000, // will be filled at compile time
}; };
} }