diff --git a/.vscode/example/settings.json.tmpl b/.vscode/example/settings.json.tmpl index b8e9f81cd..06528ce8e 100644 --- a/.vscode/example/settings.json.tmpl +++ b/.vscode/example/settings.json.tmpl @@ -19,5 +19,13 @@ "--compile-commands-dir=${workspaceFolder}/build/latest", "--clang-tidy", "--header-insertion=never" - ] + ], + "files.watcherExclude": { + "**/.git/objects/**": true, + "**/.git/**/modules/**/objects/**": true, + "**/.git/**/subtree-cache/**": true, + "**/.git/**/rr-cache/**": true, + "build/**": true, + "toolchain/**": true + } } \ No newline at end of file diff --git a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c index 0bfcffe3c..99e51edcf 100644 --- a/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c +++ b/applications/main/nfc/cli/commands/mfu/nfc_cli_command_mfu.c @@ -59,7 +59,7 @@ const NfcCliKeyDescriptor wrbl_action_keys[] = { //mfu rdbl --block 0 -- data DEADBEEF const NfcCliActionDescriptor wrbl_action = { .name = "wrbl", - .description = "Read block from ultralight card", + .description = "Write block to ultralight card", .alloc = nfc_cli_mfu_wrbl_alloc_ctx, .free = nfc_cli_mfu_wrbl_free_ctx, .execute = nfc_cli_mfu_wrbl_execute,