mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-15 17:18:01 +00:00
3a2121bbb8
* nfc: move cli commands to separate file * nfc: add nfc_emulate CLI command * nfc: rework nfc emulate call from gui * nfc: deactivate nfc state machine when exiting worker Co-authored-by: あく <alleteam@gmail.com>
9 lines
182 B
C
9 lines
182 B
C
#pragma once
|
|
|
|
#include <cli/cli.h>
|
|
|
|
void nfc_cli_init();
|
|
|
|
void nfc_cli_detect(Cli* cli, string_t args, void* context);
|
|
|
|
void nfc_cli_emulate(Cli* cli, string_t args, void* context);
|