scpi_serial: Add support for (broken) devices sending NL+CR terminator.
This allows SCPI code to work with devices that terminate their responses with NL+CR (instead of usual NL) like some GW-Instek DMMs.
This commit is contained in:
parent
d7df9dc738
commit
a0ade2f933
|
@ -187,7 +187,12 @@ static int scpi_serial_read_data(void *priv, char *buf, int maxlen)
|
|||
if (ret > 0) {
|
||||
if (buf[ret - 1] == '\n') {
|
||||
sscpi->got_newline = TRUE;
|
||||
sr_spew("Received terminator");
|
||||
sr_spew("Received NL terminator");
|
||||
} else if (ret > 1 &&
|
||||
buf[ret - 2] == '\n' && buf[ret - 1] == '\r') {
|
||||
sscpi->got_newline = TRUE;
|
||||
sr_spew("Received NL+CR terminator");
|
||||
ret--;
|
||||
} else {
|
||||
sscpi->got_newline = FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue