X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Flascar-el-usb%2Fprotocol.h;h=482c4a9788fd923445a9ba3178346ddaa355a49f;hb=f2a66a8ee669df5afa1b7bdade6e25ac0857fe4b;hp=a94bd8a59da2c6c51b7b418045edf6b547cab170;hpb=155b680da482cea2381becb73c51cfb838bff31e;p=libsigrok.git diff --git a/src/hardware/lascar-el-usb/protocol.h b/src/hardware/lascar-el-usb/protocol.h index a94bd8a5..482c4a97 100644 --- a/src/hardware/lascar-el-usb/protocol.h +++ b/src/hardware/lascar-el-usb/protocol.h @@ -21,7 +21,7 @@ #define LIBSIGROK_HARDWARE_LASCAR_EL_USB_PROTOCOL_H #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "lascar-el-usb" @@ -30,10 +30,15 @@ #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 #define MAX_CONFIGBLOCK_SIZE 256 +/* Max 100ms for a device to positively identify. */ +#define SCAN_TIMEOUT (100 * 1000) +#define BULK_XFER_TIMEOUT (10 * 1000) +#define EVENTS_TIMEOUT (10 * 1000) +#define SLEEP_US_LONG (5 * 1000) +#define SLEEP_US_SHORT (1 * 1000) + /** Private, per-device-instance driver context. */ struct dev_context { void *cb_data; @@ -63,7 +68,7 @@ enum { struct elusb_profile { int modelid; - char *modelname; + const char *modelname; int logformat; }; @@ -71,7 +76,7 @@ SR_PRIV int lascar_get_config(libusb_device_handle *dev_hdl, unsigned char *configblock, int *configlen); SR_PRIV struct sr_dev_inst *lascar_scan(int bus, int address); 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 void LIBUSB_CALL lascar_el_usb_receive_transfer(struct libusb_transfer *transfer); SR_PRIV int lascar_start_logging(const struct sr_dev_inst *sdi); SR_PRIV int lascar_stop_logging(const struct sr_dev_inst *sdi); SR_PRIV int lascar_is_logging(const struct sr_dev_inst *sdi);