unleashed-firmware/applications/main/nfc/scenes/nfc_scene_read_success.c

14 lines
510 B
C
Raw Normal View History

#include "../helpers/protocol_support/nfc_protocol_support.h"
void nfc_scene_read_success_on_enter(void* context) {
nfc_protocol_support_on_enter(NfcProtocolSupportSceneReadSuccess, context);
}
bool nfc_scene_read_success_on_event(void* context, SceneManagerEvent event) {
return nfc_protocol_support_on_event(NfcProtocolSupportSceneReadSuccess, context, event);
}
void nfc_scene_read_success_on_exit(void* context) {
nfc_protocol_support_on_exit(NfcProtocolSupportSceneReadSuccess, context);
}