Browse Source

config bug fix

pull/4/head
Piotr Wilkon 4 years ago
parent
commit
ae0e38f5be
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Src/terminal.c

+ 1
- 1
Src/terminal.c View File

@ -1347,7 +1347,7 @@ void term_parse(uint8_t *cmd, uint16_t len, Terminal_stream src, Uart_data_type
uint8_t err = 0;
if(!(cmd[12] == '\r') || (cmd[12] == '\n'))
if(!((cmd[12] == '\r') || (cmd[12] == '\n')))
{
err = 1;
}


Loading…
Cancel
Save