From ae0e38f5bed96d9193e591dc57905e8f64396f18 Mon Sep 17 00:00:00 2001 From: Piotr Wilkon Date: Wed, 13 Oct 2021 18:33:29 +0200 Subject: [PATCH 1/2] config bug fix --- Src/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/terminal.c b/Src/terminal.c index 148da1f..7e1790f 100644 --- a/Src/terminal.c +++ b/Src/terminal.c @@ -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; } From 17093802a21c045d5ac5ae407cd8969afe7c6e6a Mon Sep 17 00:00:00 2001 From: Piotr Wilkon Date: Wed, 13 Oct 2021 18:38:34 +0200 Subject: [PATCH 2/2] config bug fix --- CHANGELOG.md | 9 +++++++++ Src/common.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a368463..49164fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 1.2.1 (2021-10-13) +## New features +* none +## Bug fixes +* Digi max and rep values could not be entered when only line ending was used. +## Other +* none +## Known bugs +* none as far # 1.2.0 (2021-09-10) This is the very first open-source VP-Digi release. ## New features diff --git a/Src/common.c b/Src/common.c index 7bb09b1..9c49842 100644 --- a/Src/common.c +++ b/Src/common.c @@ -25,7 +25,7 @@ uint8_t callSsid = 0; const uint8_t dest[7] = {130, 160, 156, 172, 96, 98, 96}; //APNV01-0 -const uint8_t *versionString = (const uint8_t*)"VP-Digi v. 1.2.0\r\nThe open-source standalone APRS digipeater controller and KISS TNC\r\n"; +const uint8_t *versionString = (const uint8_t*)"VP-Digi v. 1.2.1\r\nThe open-source standalone APRS digipeater controller and KISS TNC\r\n"; uint8_t autoReset = 0; uint32_t autoResetTimer = 0;