diff --git a/applications/main/nfc/nfc.c b/applications/main/nfc/nfc.c index 93e743430..de675ef67 100644 --- a/applications/main/nfc/nfc.c +++ b/applications/main/nfc/nfc.c @@ -291,8 +291,6 @@ int32_t nfc_app(void* p) { } else if(nfc->dev->format == NfcDeviceSaveFormatMifareClassic) { scene_manager_next_scene(nfc->scene_manager, NfcSceneMfClassicEmulate); DOLPHIN_DEED(DolphinDeedNfcEmulate); - } else if(nfc->dev->format == NfcDeviceSaveFormatBankCard) { - scene_manager_next_scene(nfc->scene_manager, NfcSceneDeviceInfo); } else { scene_manager_next_scene(nfc->scene_manager, NfcSceneEmulateUid); DOLPHIN_DEED(DolphinDeedNfcEmulate); diff --git a/applications/main/subghz/scenes/subghz_scene_receiver_info.c b/applications/main/subghz/scenes/subghz_scene_receiver_info.c index 3ceb0fff0..0176f9613 100644 --- a/applications/main/subghz/scenes/subghz_scene_receiver_info.c +++ b/applications/main/subghz/scenes/subghz_scene_receiver_info.c @@ -44,9 +44,7 @@ static bool subghz_scene_receiver_info_update_parser(void* context) { return false; } -void subghz_scene_receiver_info_on_enter(void* context) { - SubGhz* subghz = context; - +void subghz_scene_receiver_info_draw_widget(SubGhz* subghz) { if(subghz_scene_receiver_info_update_parser(subghz)) { FuriString* frequency_str; FuriString* modulation_str; @@ -116,7 +114,6 @@ void subghz_scene_receiver_info_on_enter(void* context) { void subghz_scene_receiver_info_on_enter(void* context) { SubGhz* subghz = context; - DOLPHIN_DEED(DolphinDeedSubGhzReceiverInfo); subghz_scene_receiver_info_draw_widget(subghz); } diff --git a/applications/plugins/weather_station/protocols/acurite_606tx.c b/applications/plugins/weather_station/protocols/acurite_606tx.c index 158720cc4..3c9144057 100644 --- a/applications/plugins/weather_station/protocols/acurite_606tx.c +++ b/applications/plugins/weather_station/protocols/acurite_606tx.c @@ -169,7 +169,6 @@ void ws_protocol_decoder_acurite_606tx_feed(void* context, bool level, uint32_t } instance->decoder.decode_data = 0; instance->decoder.decode_count_bit = 0; - break; } else if( DURATION_DIFF(duration, ws_protocol_acurite_606tx_const.te_long) < ws_protocol_acurite_606tx_const.te_delta * 2) { @@ -183,7 +182,6 @@ void ws_protocol_decoder_acurite_606tx_feed(void* context, bool level, uint32_t } else { instance->decoder.parser_step = Acurite_606TXDecoderStepReset; } - } else { instance->decoder.parser_step = Acurite_606TXDecoderStepReset; }