89 lines
2.9 KiB
C
89 lines
2.9 KiB
C
/*
|
|
* This file is part of the libsigrok project.
|
|
*
|
|
* Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LIBSIGROK_HARDWARE_LASCAR_EL_USB_PROTOCOL_H
|
|
#define LIBSIGROK_HARDWARE_LASCAR_EL_USB_PROTOCOL_H
|
|
|
|
#include <stdint.h>
|
|
#include "libsigrok.h"
|
|
#include "libsigrok-internal.h"
|
|
|
|
/* Message logging helpers with driver-specific prefix string. */
|
|
#define DRIVER_LOG_DOMAIN "lascar-el-usb: "
|
|
#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
|
|
#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
|
|
#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
|
|
#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
|
|
#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
|
|
#define MAX_CONFIGBLOCK_SIZE 256
|
|
|
|
/** Private, per-device-instance driver context. */
|
|
struct dev_context {
|
|
void *cb_data;
|
|
struct sr_usb_dev_inst *usb;
|
|
const struct elusb_profile *profile;
|
|
int usbfd[10];
|
|
/* Generic EL-USB */
|
|
unsigned char config[MAX_CONFIGBLOCK_SIZE];
|
|
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;
|
|
};
|
|
|
|
enum {
|
|
LOG_UNSUPPORTED,
|
|
LOG_TEMP_RH,
|
|
LOG_CO,
|
|
};
|
|
|
|
struct elusb_profile {
|
|
int modelid;
|
|
char *modelname;
|
|
int logformat;
|
|
};
|
|
|
|
SR_PRIV int lascar_get_config(libusb_device_handle *dev_hdl,
|
|
unsigned char *configblock, int *configlen);
|
|
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 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);
|
|
SR_PRIV int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
|
|
|
|
#endif
|