#include "nfc_scene_debug_read_emv.h" #include "../nfc_i.h" #include const void nfc_scene_debug_read_emv_on_enter(void* context) { Nfc* nfc = (Nfc*)context; view_dispatcher_switch_to_view(nfc->nfc_common.view_dispatcher, NfcViewEmv); } const bool nfc_scene_debug_read_emv_on_event(void* context, uint32_t event) { return false; } const void nfc_scene_debug_read_emv_on_exit(void* context) { } AppScene* nfc_scene_debug_read_emv_alloc() { AppScene* scene = furi_alloc(sizeof(AppScene)); scene->id = NfcSceneDebugReadEmv; scene->on_enter = nfc_scene_debug_read_emv_on_enter; scene->on_event = nfc_scene_debug_read_emv_on_event; scene->on_exit = nfc_scene_debug_read_emv_on_exit; return scene; } void nfc_scene_debug_read_emv_free(AppScene* scene) { free(scene); }