X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Flascar-el-usb%2Fprotocol.h;h=185afde16a9e5330ea7146de352850344af6a0f9;hb=1987b8d63e748f0813dc6a4630e99686e4fe1728;hp=ea3e4c81f049d4e3a5f3d9696220deb36113c2d2;hpb=46697e38b286541e0e5aa354d35a6f4564855fa6;p=libsigrok.git diff --git a/hardware/lascar-el-usb/protocol.h b/hardware/lascar-el-usb/protocol.h index ea3e4c81..185afde1 100644 --- a/hardware/lascar-el-usb/protocol.h +++ b/hardware/lascar-el-usb/protocol.h @@ -33,21 +33,51 @@ #define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args) #define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args) +#define LASCAR_VENDOR "Lascar" +#define LASCAR_INTERFACE 0 +#define LASCAR_EP_IN 0x82 +#define LASCAR_EP_OUT 2 +/* Max 100ms for a device to positively identify. */ +#define SCAN_TIMEOUT 100000 + /** Private, per-device-instance driver context. */ struct dev_context { - /** The current sampling limit (in number of samples). */ + void *cb_data; + struct sr_usb_dev_inst *usb; + const struct elusb_profile *profile; + int usbfd[10]; + /* Generic EL-USB */ + unsigned char *config; + unsigned int log_size; + unsigned int rcvd_bytes; + unsigned int sample_size; + unsigned int logged_samples; + unsigned int rcvd_samples; uint64_t limit_samples; + /* Model-specific */ + /* EL-USB-CO: these are something like scaling and calibration values + * fixed per device, used to convert the sample values to CO ppm. */ + float co_high; + float co_low; + /* Temperature units as stored in the device config. */ + int temp_unit; +}; - /** The current sampling limit (in ms). */ - uint64_t limit_msec; - - /** Opaque pointer passed in by the frontend. */ - void *cb_data; +enum { + LOG_UNSUPPORTED, + LOG_TEMP_RH, + LOG_CO, +}; - /** The current number of already received samples. */ - uint64_t num_samples; +struct elusb_profile { + int modelid; + char *modelname; + int logformat; }; -SR_PRIV int lascar_el_usb_receive_data(int fd, int revents, void *cb_data); +SR_PRIV unsigned char *lascar_get_config(libusb_device_handle *dev_hdl); +SR_PRIV int lascar_el_usb_handle_events(int fd, int revents, void *cb_data); +SR_PRIV void lascar_el_usb_receive_transfer(struct libusb_transfer *transfer); +SR_PRIV int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data); #endif