separate ISO15693 basic and SLIX extensions a bit more

changed save format to reflect this
executing emulation from browser now also works
This commit is contained in:
g3gg0
2022-11-17 01:35:39 +01:00
parent bcd33ca125
commit 75f5e6604b
16 changed files with 555 additions and 151 deletions

View File

@@ -99,6 +99,8 @@ bool nfc_scene_saved_menu_on_event(void* context, SceneManagerEvent event) {
scene_manager_next_scene(nfc->scene_manager, NfcSceneMfUltralightEmulate);
} else if(nfc->dev->format == NfcDeviceSaveFormatMifareClassic) {
scene_manager_next_scene(nfc->scene_manager, NfcSceneMfClassicEmulate);
} else if(nfc->dev->format == NfcDeviceSaveFormatNfcV) {
scene_manager_next_scene(nfc->scene_manager, NfcSceneEmulateNfcV);
} else {
scene_manager_next_scene(nfc->scene_manager, NfcSceneEmulateUid);
}