mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-01-02 02:05:05 +03:00
1c3cbec661
* Added basic template of Felica listener * Raw nfc felica listener functions * Added functions to setup chip for felica listener * Cleanup function templates from unnecessary parts * Removed todo comment * Updated api versions * Adjusted chip config for felica * Set proper chip passive target mode for felica * Added felica function to unit tests * Update furi_hal_nfc_felica.c * Removed duplication Co-authored-by: gornekich <n.gorbadey@gmail.com>
115 lines
3.9 KiB
C
115 lines
3.9 KiB
C
#include "felica.h"
|
|
#include "felica_render.h"
|
|
|
|
#include <nfc/protocols/felica/felica_poller.h>
|
|
|
|
#include "nfc/nfc_app_i.h"
|
|
|
|
#include "../nfc_protocol_support_common.h"
|
|
#include "../nfc_protocol_support_gui_common.h"
|
|
|
|
static void nfc_scene_info_on_enter_felica(NfcApp* instance) {
|
|
const NfcDevice* device = instance->nfc_device;
|
|
const FelicaData* data = nfc_device_get_data(device, NfcProtocolFelica);
|
|
|
|
FuriString* temp_str = furi_string_alloc();
|
|
furi_string_cat_printf(
|
|
temp_str, "\e#%s\n", nfc_device_get_name(device, NfcDeviceNameTypeFull));
|
|
nfc_render_felica_info(data, NfcProtocolFormatTypeFull, temp_str);
|
|
|
|
widget_add_text_scroll_element(
|
|
instance->widget, 0, 0, 128, 64, furi_string_get_cstr(temp_str));
|
|
|
|
furi_string_free(temp_str);
|
|
}
|
|
|
|
static NfcCommand nfc_scene_read_poller_callback_felica(NfcGenericEvent event, void* context) {
|
|
furi_assert(event.protocol == NfcProtocolFelica);
|
|
|
|
NfcApp* instance = context;
|
|
const FelicaPollerEvent* felica_event = event.event_data;
|
|
|
|
if(felica_event->type == FelicaPollerEventTypeReady) {
|
|
nfc_device_set_data(
|
|
instance->nfc_device, NfcProtocolFelica, nfc_poller_get_data(instance->poller));
|
|
view_dispatcher_send_custom_event(instance->view_dispatcher, NfcCustomEventPollerSuccess);
|
|
return NfcCommandStop;
|
|
}
|
|
|
|
return NfcCommandContinue;
|
|
}
|
|
|
|
static void nfc_scene_read_on_enter_felica(NfcApp* instance) {
|
|
nfc_poller_start(instance->poller, nfc_scene_read_poller_callback_felica, instance);
|
|
}
|
|
|
|
static void nfc_scene_read_success_on_enter_felica(NfcApp* instance) {
|
|
const NfcDevice* device = instance->nfc_device;
|
|
const FelicaData* data = nfc_device_get_data(device, NfcProtocolFelica);
|
|
|
|
FuriString* temp_str = furi_string_alloc();
|
|
furi_string_cat_printf(
|
|
temp_str, "\e#%s\n", nfc_device_get_name(device, NfcDeviceNameTypeFull));
|
|
nfc_render_felica_info(data, NfcProtocolFormatTypeShort, temp_str);
|
|
|
|
widget_add_text_scroll_element(
|
|
instance->widget, 0, 0, 128, 52, furi_string_get_cstr(temp_str));
|
|
|
|
furi_string_free(temp_str);
|
|
}
|
|
|
|
static bool nfc_scene_saved_menu_on_event_felica(NfcApp* instance, uint32_t event) {
|
|
if(event == SubmenuIndexCommonEdit) {
|
|
scene_manager_next_scene(instance->scene_manager, NfcSceneSetUid);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static void nfc_scene_emulate_on_enter_felica(NfcApp* instance) {
|
|
const FelicaData* data = nfc_device_get_data(instance->nfc_device, NfcProtocolFelica);
|
|
instance->listener = nfc_listener_alloc(instance->nfc, NfcProtocolFelica, data);
|
|
nfc_listener_start(instance->listener, NULL, NULL);
|
|
}
|
|
|
|
const NfcProtocolSupportBase nfc_protocol_support_felica = {
|
|
.features = NfcProtocolFeatureEmulateUid,
|
|
|
|
.scene_info =
|
|
{
|
|
.on_enter = nfc_scene_info_on_enter_felica,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
.scene_read =
|
|
{
|
|
.on_enter = nfc_scene_read_on_enter_felica,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
.scene_read_menu =
|
|
{
|
|
.on_enter = nfc_protocol_support_common_on_enter_empty,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
.scene_read_success =
|
|
{
|
|
.on_enter = nfc_scene_read_success_on_enter_felica,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
.scene_saved_menu =
|
|
{
|
|
.on_enter = nfc_protocol_support_common_on_enter_empty,
|
|
.on_event = nfc_scene_saved_menu_on_event_felica,
|
|
},
|
|
.scene_save_name =
|
|
{
|
|
.on_enter = nfc_protocol_support_common_on_enter_empty,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
.scene_emulate =
|
|
{
|
|
.on_enter = nfc_scene_emulate_on_enter_felica,
|
|
.on_event = nfc_protocol_support_common_on_event_empty,
|
|
},
|
|
};
|