2021-08-03 17:24:20 +00:00
|
|
|
#include "../nfc_i.h"
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_emulate_apdu_sequence_on_enter(void* context) {
|
2021-08-03 17:24:20 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
// Setup view
|
|
|
|
Popup* popup = nfc->popup;
|
|
|
|
|
|
|
|
popup_set_header(popup, "Run APDU reader", 64, 31, AlignCenter, AlignTop);
|
|
|
|
|
|
|
|
// Setup and start worker
|
|
|
|
|
|
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewPopup);
|
2021-11-08 21:55:06 +00:00
|
|
|
nfc_worker_start(nfc->worker, NfcWorkerStateEmulateApdu, &nfc->dev->dev_data, NULL, nfc);
|
2021-08-03 17:24:20 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
bool nfc_scene_emulate_apdu_sequence_on_event(void* context, SceneManagerEvent event) {
|
2021-08-03 17:24:20 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
if(event.type == SceneManagerEventTypeTick) {
|
|
|
|
notification_message(nfc->notifications, &sequence_blink_blue_10);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_emulate_apdu_sequence_on_exit(void* context) {
|
2021-08-03 17:24:20 +00:00
|
|
|
Nfc* nfc = (Nfc*)context;
|
|
|
|
|
|
|
|
// Stop worker
|
|
|
|
nfc_worker_stop(nfc->worker);
|
|
|
|
|
|
|
|
// Clear view
|
|
|
|
Popup* popup = nfc->popup;
|
2022-03-16 08:57:13 +00:00
|
|
|
popup_reset(popup);
|
2021-08-03 17:24:20 +00:00
|
|
|
}
|