From 05699cb948cc7ebee62382a7902e353aa6d342db Mon Sep 17 00:00:00 2001 From: Chris Osborn Date: Sat, 16 Nov 2019 10:11:02 -0800 Subject: [PATCH] Mixed case AT commands are not supported by real modems, don't bother to check CR for parity detection. --- src/modem_core.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/modem_core.c b/src/modem_core.c index be53d9b..222f58e 100644 --- a/src/modem_core.c +++ b/src/modem_core.c @@ -567,20 +567,17 @@ int mdm_parse_cmd(modem_config *cfg) int detect_parity(modem_config *cfg) { int parity, eobits; - int charA, charT, charCR; + int charA, charT; charA = cfg->pchars[0]; charT = cfg->pchars[1]; - charCR = cfg->pchars[2]; parity = (charA & 0x80) >> 7; parity |= (charT & 0x80) >> 6; - parity |= (charCR & 0x80) >> 5; eobits = gen_parity(charA & 0x7f); eobits |= gen_parity(charT & 0x7f) << 1; - eobits |= gen_parity(charCR & 0x7f) << 2; if (parity == eobits) return 2;