|
|
@@ -20,16 +20,12 @@ void pocsag_pager_scene_about_on_enter(void* context) {
|
|
|
furi_string_cat_printf(temp_str, "Github: %s\n\n", PCSG_GITHUB);
|
|
|
|
|
|
furi_string_cat_printf(temp_str, "\e#%s\n", "Description");
|
|
|
- furi_string_cat_printf(temp_str, "Receiving POCSAG Pager \nmessages\n\n");
|
|
|
+ furi_string_cat_printf(
|
|
|
+ temp_str,
|
|
|
+ "Receiving POCSAG Pager \nmessages \nDefault frequency is set to\nDAPNET - 439987500\n\nUse Config button to set frequency\nCustom frequencies usually can be found in the end of the list - use right arrow button to scroll to the end\n\nTo add new modulations and\nfrequencies create file\n/pocsag/settings.txt\nAnd copy \nsubghz/assets/setting_user.example\ncontents into new\nsettings.txt\n\n");
|
|
|
|
|
|
- furi_string_cat_printf(temp_str, "Supported protocols:\n");
|
|
|
- size_t i = 0;
|
|
|
- const char* protocol_name =
|
|
|
- subghz_environment_get_protocol_name_registry(app->txrx->environment, i++);
|
|
|
- do {
|
|
|
- furi_string_cat_printf(temp_str, "%s\n", protocol_name);
|
|
|
- protocol_name = subghz_environment_get_protocol_name_registry(app->txrx->environment, i++);
|
|
|
- } while(protocol_name != NULL);
|
|
|
+ furi_string_cat_printf(
|
|
|
+ temp_str, "Supported protocols:\nPOCSAG 512\nPOCSAG 1200\nPOCSAG 2400\n");
|
|
|
|
|
|
widget_add_text_box_element(
|
|
|
app->widget,
|