Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-07-18 21:09:00 +0300
committerGitHub <noreply@github.com>2021-07-18 21:09:00 +0300
commit421a0f6b97dcfcfb1e5b990b3b9b1a453b13aaa3 (patch)
treeea12ff0aaa259b9a30cf03c1fde8fcc5f0e9f667 /applications/nfc
parentfbb81483aecbec294f2d6c13316742e6ba5769d3 (diff)
[FL-1546, FL-1534, FL-1550] Drop F5, Certification preparation, Global application start lock (#585)
* Firmware: drop F5 target * Rename app-loader to loader * Update code owners file * Loader: global application start lock API, minor refactoring * Archive: update loader usage * Cli: Command flags, global application start lock * Apps: update cli API usage * Bootloader: minor refactoring * Firmware: minor build refactoring * SubGhz: GUI packet test * SubGhz: drop packet transmission and unused presets * Github: drop F5 from build * Archive: favorites * Archive: a little bit more of Favorites
Diffstat (limited to 'applications/nfc')
-rwxr-xr-xapplications/nfc/nfc_cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/nfc/nfc_cli.c b/applications/nfc/nfc_cli.c
index b954f60c..6f420541 100755
--- a/applications/nfc/nfc_cli.c
+++ b/applications/nfc/nfc_cli.c
@@ -5,8 +5,8 @@
void nfc_cli_init() {
Cli* cli = furi_record_open("cli");
- cli_add_command(cli, "nfc_detect", nfc_cli_detect, NULL);
- cli_add_command(cli, "nfc_emulate", nfc_cli_emulate, NULL);
+ cli_add_command(cli, "nfc_detect", CliCommandFlagDefault, nfc_cli_detect, NULL);
+ cli_add_command(cli, "nfc_emulate", CliCommandFlagDefault, nfc_cli_emulate, NULL);
furi_record_close("cli");
}