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:
authorSkorpionm <85568270+Skorpionm@users.noreply.github.com>2021-12-02 14:19:47 +0300
committerGitHub <noreply@github.com>2021-12-02 14:19:47 +0300
commitfbd05598adbb185472696d2a46551927d3af5517 (patch)
tree43f5dde18b5455272dc02c829ffbf011b3c69cb7 /applications/cli
parent0b0629e6feccde088b67f8cc0674a513cc2be262 (diff)
[FL-2086] SubGhz: Fix Errors (#861)
* CLI: fix main GUI freeze while subghz chat is running * CLI: fix processing backspace in the web console * [FL-2086] SubGhz: fix can't save signals in sub'e to internal memory * Cli: remove warning message in i2c command Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/cli')
-rw-r--r--applications/cli/cli_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/cli/cli_commands.c b/applications/cli/cli_commands.c
index e8837108..1834282f 100644
--- a/applications/cli/cli_commands.c
+++ b/applications/cli/cli_commands.c
@@ -466,7 +466,7 @@ void cli_command_i2c(Cli* cli, string_t args, void* context) {
uint8_t test = 0;
printf("Scanning external i2c on PC0(SCL)/PC1(SDA)\r\n"
"Clock: 100khz, 7bit address\r\n"
- "!!! Invasive mode (tx to device) !!!\r\n\r\n");
+ "\r\n");
printf(" | 0 1 2 3 4 5 6 7 8 9 A B C D E F\r\n");
printf("--+--------------------------------\r\n");
for(uint8_t row = 0; row < 0x8; row++) {