mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-27 15:22:29 +03:00
614f9b8705
This reverts commit 19a5f02d66
.
14 lines
483 B
C
14 lines
483 B
C
#include "../helpers/protocol_support/nfc_protocol_support.h"
|
|
|
|
void nfc_scene_emulate_on_enter(void* context) {
|
|
nfc_protocol_support_on_enter(NfcProtocolSupportSceneEmulate, context);
|
|
}
|
|
|
|
bool nfc_scene_emulate_on_event(void* context, SceneManagerEvent event) {
|
|
return nfc_protocol_support_on_event(NfcProtocolSupportSceneEmulate, context, event);
|
|
}
|
|
|
|
void nfc_scene_emulate_on_exit(void* context) {
|
|
nfc_protocol_support_on_exit(NfcProtocolSupportSceneEmulate, context);
|
|
}
|