scpi_serial: Convert 'got_newline' variable to gboolean.
This commit is contained in:
parent
d64be25be4
commit
35bb2fcef9
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
struct scpi_serial {
|
struct scpi_serial {
|
||||||
struct sr_serial_dev_inst *serial;
|
struct sr_serial_dev_inst *serial;
|
||||||
char got_newline;
|
gboolean got_newline;
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct {
|
static const struct {
|
||||||
|
@ -93,7 +93,7 @@ static int scpi_serial_open(struct sr_scpi_dev_inst *scpi)
|
||||||
if (serial_flush(serial) != SR_OK)
|
if (serial_flush(serial) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
sscpi->got_newline = 0;
|
sscpi->got_newline = FALSE;
|
||||||
|
|
||||||
return SR_OK;
|
return SR_OK;
|
||||||
}
|
}
|
||||||
|
@ -141,7 +141,7 @@ static int scpi_serial_send(void *priv, const char *command)
|
||||||
static int scpi_serial_read_begin(void *priv)
|
static int scpi_serial_read_begin(void *priv)
|
||||||
{
|
{
|
||||||
struct scpi_serial *sscpi = priv;
|
struct scpi_serial *sscpi = priv;
|
||||||
sscpi->got_newline = 0;
|
sscpi->got_newline = FALSE;
|
||||||
|
|
||||||
return SR_OK;
|
return SR_OK;
|
||||||
}
|
}
|
||||||
|
@ -161,10 +161,10 @@ static int scpi_serial_read_data(void *priv, char *buf, int maxlen)
|
||||||
sr_spew("Read %d bytes into buffer.", ret);
|
sr_spew("Read %d bytes into buffer.", ret);
|
||||||
|
|
||||||
if (buf[ret - 1] == '\n') {
|
if (buf[ret - 1] == '\n') {
|
||||||
sscpi->got_newline = 1;
|
sscpi->got_newline = TRUE;
|
||||||
sr_spew("Received terminator");
|
sr_spew("Received terminator");
|
||||||
} else {
|
} else {
|
||||||
sscpi->got_newline = 0;
|
sscpi->got_newline = FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue