brymen-dmm: Use sr_dev_inst to store connection handle.

This commit is contained in:
Uwe Hermann 2013-04-28 08:01:51 +02:00
parent af51a7718e
commit d9a7c349ed
3 changed files with 25 additions and 27 deletions

View File

@ -42,13 +42,13 @@ static int hw_init(struct sr_context *sr_ctx)
static void free_instance(void *inst) static void free_instance(void *inst)
{ {
struct sr_dev_inst *sdi; struct sr_dev_inst *sdi;
struct dev_context *devc; struct sr_serial_dev_inst *serial;
if (!(sdi = inst)) if (!(sdi = inst))
return; return;
if (!(devc = sdi->priv))
return; serial = sdi->conn;
sr_serial_dev_inst_free(devc->serial); sr_serial_dev_inst_free(serial);
sr_dev_inst_free(sdi); sr_dev_inst_free(sdi);
} }
@ -110,7 +110,8 @@ static GSList *brymen_scan(const char *conn, const char *serialcomm)
goto scan_cleanup; goto scan_cleanup;
} }
devc->serial = serial; sdi->inst_type = SR_INST_SERIAL;
sdi->conn = serial;
drvc = di->priv; drvc = di->priv;
sdi->priv = devc; sdi->priv = devc;
sdi->driver = di; sdi->driver = di;
@ -135,8 +136,6 @@ static GSList *hw_scan(GSList *options)
GSList *devices, *l; GSList *devices, *l;
const char *conn, *serialcomm; const char *conn, *serialcomm;
(void)options;
devices = NULL; devices = NULL;
drvc = di->priv; drvc = di->priv;
drvc->instances = NULL; drvc->instances = NULL;
@ -153,9 +152,8 @@ static GSList *hw_scan(GSList *options)
break; break;
} }
} }
if (!conn) { if (!conn)
return NULL; return NULL;
}
if (serialcomm) { if (serialcomm) {
/* Use the provided comm specs. */ /* Use the provided comm specs. */
@ -175,14 +173,10 @@ static GSList *hw_dev_list(void)
static int hw_dev_open(struct sr_dev_inst *sdi) static int hw_dev_open(struct sr_dev_inst *sdi)
{ {
struct dev_context *devc; struct sr_serial_dev_inst *serial;
if (!(devc = sdi->priv)) { serial = sdi->conn;
sr_err("sdi->priv was NULL."); if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
return SR_ERR_BUG;
}
if (serial_open(devc->serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
return SR_ERR; return SR_ERR;
sdi->status = SR_ST_ACTIVE; sdi->status = SR_ST_ACTIVE;
@ -192,12 +186,11 @@ static int hw_dev_open(struct sr_dev_inst *sdi)
static int hw_dev_close(struct sr_dev_inst *sdi) static int hw_dev_close(struct sr_dev_inst *sdi)
{ {
struct dev_context *devc; struct sr_serial_dev_inst *serial;
devc = sdi->priv; serial = sdi->conn;
if (serial && serial->fd != -1) {
if (devc->serial && devc->serial->fd != -1) { serial_close(serial);
serial_close(devc->serial);
sdi->status = SR_ST_INACTIVE; sdi->status = SR_ST_INACTIVE;
} }
@ -263,6 +256,7 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
void *cb_data) void *cb_data)
{ {
struct dev_context *devc; struct dev_context *devc;
struct sr_serial_dev_inst *serial;
if (sdi->status != SR_ST_ACTIVE) if (sdi->status != SR_ST_ACTIVE)
return SR_ERR_DEV_CLOSED; return SR_ERR_DEV_CLOSED;
@ -286,7 +280,8 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN); std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
/* Poll every 50ms, or whenever some data comes in. */ /* Poll every 50ms, or whenever some data comes in. */
sr_source_add(devc->serial->fd, G_IO_IN, 50, serial = sdi->conn;
sr_source_add(serial->fd, G_IO_IN, 50,
brymen_dmm_receive_data, (void *)sdi); brymen_dmm_receive_data, (void *)sdi);
return SR_OK; return SR_OK;
@ -295,7 +290,7 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data) static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
{ {
return std_hw_dev_acquisition_stop_serial(sdi, cb_data, hw_dev_close, return std_hw_dev_acquisition_stop_serial(sdi, cb_data, hw_dev_close,
((struct dev_context *)(sdi->priv))->serial, DRIVER_LOG_DOMAIN); sdi->conn, DRIVER_LOG_DOMAIN);
} }
SR_PRIV struct sr_dev_driver brymen_bm857_driver_info = { SR_PRIV struct sr_dev_driver brymen_bm857_driver_info = {

View File

@ -53,12 +53,14 @@ static void handle_new_data(struct sr_dev_inst *sdi)
{ {
struct dev_context *devc; struct dev_context *devc;
int len, status, offset = 0; int len, status, offset = 0;
struct sr_serial_dev_inst *serial;
devc = sdi->priv; devc = sdi->priv;
serial = sdi->conn;
/* Try to get as much data as the buffer can hold. */ /* Try to get as much data as the buffer can hold. */
len = DMM_BUFSIZE - devc->buflen; len = DMM_BUFSIZE - devc->buflen;
len = serial_read(devc->serial, devc->buf + devc->buflen, len); len = serial_read(serial, devc->buf + devc->buflen, len);
if (len < 1) { if (len < 1) {
sr_err("Serial port read error: %d.", len); sr_err("Serial port read error: %d.", len);
return; return;
@ -112,6 +114,7 @@ SR_PRIV int brymen_dmm_receive_data(int fd, int revents, void *cb_data)
{ {
struct sr_dev_inst *sdi; struct sr_dev_inst *sdi;
struct dev_context *devc; struct dev_context *devc;
struct sr_serial_dev_inst *serial;
int ret; int ret;
int64_t time; int64_t time;
@ -123,12 +126,14 @@ SR_PRIV int brymen_dmm_receive_data(int fd, int revents, void *cb_data)
if (!(devc = sdi->priv)) if (!(devc = sdi->priv))
return TRUE; return TRUE;
serial = sdi->conn;
if (revents == G_IO_IN) { if (revents == G_IO_IN) {
/* Serial data arrived. */ /* Serial data arrived. */
handle_new_data(sdi); handle_new_data(sdi);
} else { } else {
/* Timeout, send another packet request. */ /* Timeout, send another packet request. */
if ((ret = brymen_packet_request(devc->serial)) < 0) { if ((ret = brymen_packet_request(serial)) < 0) {
sr_err("Failed to request packet: %d.", ret); sr_err("Failed to request packet: %d.", ret);
return FALSE; return FALSE;
} }

View File

@ -62,8 +62,6 @@ struct dev_context {
/** Start time of acquisition session */ /** Start time of acquisition session */
int64_t starttime; int64_t starttime;
struct sr_serial_dev_inst *serial;
uint8_t buf[DMM_BUFSIZE]; uint8_t buf[DMM_BUFSIZE];
int bufoffset; int bufoffset;
int buflen; int buflen;