fixed a problem with USB defines

This commit is contained in:
magnuskarlsson 2014-05-10 16:04:58 -07:00 committed by Bert Vermeulen
parent 4bd80e1228
commit 72716f15be
2 changed files with 5 additions and 5 deletions

View File

@ -19,11 +19,6 @@
#include "protocol.h" #include "protocol.h"
#define USB_VENDOR_ID 0x0403
#define USB_DEVICE_ID 0x6010
#define USB_VENDOR_NAME "Saanlima"
#define USB_IPRODUCT "Pipistrello LX45"
static const int32_t hwcaps[] = { static const int32_t hwcaps[] = {
SR_CONF_LOGIC_ANALYZER, SR_CONF_LOGIC_ANALYZER,
SR_CONF_SAMPLERATE, SR_CONF_SAMPLERATE,

View File

@ -20,6 +20,11 @@
#ifndef LIBSIGROK_HARDWARE_PIPISTRELLO_OLS_PROTOCOL_H #ifndef LIBSIGROK_HARDWARE_PIPISTRELLO_OLS_PROTOCOL_H
#define LIBSIGROK_HARDWARE_PIPISTRELLO_OLS_PROTOCOL_H #define LIBSIGROK_HARDWARE_PIPISTRELLO_OLS_PROTOCOL_H
#define USB_VENDOR_ID 0x0403
#define USB_DEVICE_ID 0x6010
#define USB_VENDOR_NAME "Saanlima"
#define USB_IPRODUCT "Pipistrello LX45"
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <glib.h> #include <glib.h>