This commit is contained in:
Willy-JL
2023-05-02 14:29:30 +01:00
parent 74a30f919d
commit 2fcc3d1ae2
3 changed files with 4 additions and 7 deletions
@@ -204,7 +204,7 @@ void nfc_scene_nfc_data_info_on_enter(void* context) {
furi_string_cat_printf(temp_str, "\e#ISO15693 (unknown)\n");
break;
}
// Set tag general data
// Set tag general data
} else if(type == FuriHalNfcTypeF) {
// Set NFC-F data
furi_string_cat_printf(temp_str, "ISO 18092 (NFC-F)\n");
@@ -84,12 +84,11 @@ void subghz_scene_transmitter_on_enter(void* context) {
with_view_model(
subghz->subghz_transmitter->view,
SubGhzViewTransmitterModel * model,
{
model->show_button = false;
},
{ model->show_button = false; },
true);
fav_timer = furi_timer_alloc(fav_timer_callback, FuriTimerTypeOnce, subghz);
furi_timer_start(fav_timer, XTREME_SETTINGS()->favorite_timeout * furi_kernel_get_tick_frequency());
furi_timer_start(
fav_timer, XTREME_SETTINGS()->favorite_timeout * furi_kernel_get_tick_frequency());
subghz->state_notifications = SubGhzNotificationStateTx;
}
}