mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-13 08:17:12 +00:00
Cli: give input command CliCommandFlagParallelSafe flag (#588)
* Cli: give input command CliCommandFlagParallelSafe flag
This commit is contained in:
parent
b6f6378628
commit
66bd59b3cd
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ int32_t input_task() {
|
|||
|
||||
input->cli = furi_record_open("cli");
|
||||
if(input->cli) {
|
||||
cli_add_command(input->cli, "input_send", CliCommandFlagDefault, input_cli_send, input);
|
||||
cli_add_command(
|
||||
input->cli, "input_send", CliCommandFlagParallelSafe, input_cli_send, input);
|
||||
}
|
||||
|
||||
const size_t pin_count = input_pins_count;
|
||||
|
|
Loading…
Reference in a new issue