2021-07-02 13:44:10 +00:00
|
|
|
#include "../nfc_i.h"
|
|
|
|
|
2021-07-04 16:01:16 +00:00
|
|
|
void nfc_scene_set_atqa_byte_input_callback(void* context) {
|
2022-04-19 15:23:58 +00:00
|
|
|
Nfc* nfc = context;
|
2021-07-02 13:44:10 +00:00
|
|
|
|
2022-02-02 19:59:28 +00:00
|
|
|
view_dispatcher_send_custom_event(nfc->view_dispatcher, NfcCustomEventByteInputDone);
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_set_atqa_on_enter(void* context) {
|
2022-04-19 15:23:58 +00:00
|
|
|
Nfc* nfc = context;
|
2021-07-02 13:44:10 +00:00
|
|
|
|
|
|
|
// Setup view
|
|
|
|
ByteInput* byte_input = nfc->byte_input;
|
|
|
|
byte_input_set_header_text(byte_input, "Enter atqa in hex");
|
|
|
|
byte_input_set_result_callback(
|
2021-07-22 06:05:07 +00:00
|
|
|
byte_input,
|
|
|
|
nfc_scene_set_atqa_byte_input_callback,
|
|
|
|
NULL,
|
|
|
|
nfc,
|
2021-11-08 21:55:06 +00:00
|
|
|
nfc->dev->dev_data.nfc_data.atqa,
|
2021-07-22 06:05:07 +00:00
|
|
|
2);
|
|
|
|
view_dispatcher_switch_to_view(nfc->view_dispatcher, NfcViewByteInput);
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
bool nfc_scene_set_atqa_on_event(void* context, SceneManagerEvent event) {
|
2022-04-19 15:23:58 +00:00
|
|
|
Nfc* nfc = context;
|
|
|
|
bool consumed = false;
|
2021-07-02 13:44:10 +00:00
|
|
|
|
2021-07-12 18:56:14 +00:00
|
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
2022-02-02 19:59:28 +00:00
|
|
|
if(event.event == NfcCustomEventByteInputDone) {
|
2021-07-12 18:56:14 +00:00
|
|
|
scene_manager_next_scene(nfc->scene_manager, NfcSceneSetUid);
|
2022-04-19 15:23:58 +00:00
|
|
|
consumed = true;
|
2021-07-12 18:56:14 +00:00
|
|
|
}
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
2022-04-19 15:23:58 +00:00
|
|
|
return consumed;
|
2021-07-02 13:44:10 +00:00
|
|
|
}
|
|
|
|
|
2021-09-21 09:34:16 +00:00
|
|
|
void nfc_scene_set_atqa_on_exit(void* context) {
|
2022-04-19 15:23:58 +00:00
|
|
|
Nfc* nfc = context;
|
2021-07-02 13:44:10 +00:00
|
|
|
|
|
|
|
// Clear view
|
|
|
|
byte_input_set_result_callback(nfc->byte_input, NULL, NULL, NULL, NULL, 0);
|
|
|
|
byte_input_set_header_text(nfc->byte_input, "");
|
|
|
|
}
|