X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fpipistrello-ols%2Fprotocol.h;h=c2bd2ccb902ba5cb91f79bcbd8254b32b9dd78ba;hb=6ed709fecd14e6f122ee1ea18fc15abb4b3c8580;hp=17d3948c9029622b6a9ac15a4aa863a9472e49b3;hpb=b94cff407f6a260e4ae916137da54f7602f3d050;p=libsigrok.git diff --git a/src/hardware/pipistrello-ols/protocol.h b/src/hardware/pipistrello-ols/protocol.h index 17d3948c..c2bd2ccb 100644 --- a/src/hardware/pipistrello-ols/protocol.h +++ b/src/hardware/pipistrello-ols/protocol.h @@ -20,26 +20,24 @@ #ifndef 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 #include #include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" -#define LOG_PREFIX "pipistrello_ols" +#define LOG_PREFIX "p-ols" -#define FTDI_BUF_SIZE (16 * 1024) +#define USB_VENDOR_ID 0x0403 +#define USB_DEVICE_ID 0x6010 +#define USB_VENDOR_NAME "Saanlima" +#define USB_IPRODUCT "Pipistrello LX45" +#define FTDI_BUF_SIZE (16 * 1024) #define NUM_CHANNELS 32 #define NUM_TRIGGER_STAGES 4 -#define TRIGGER_TYPE "01rf" #define CLOCK_RATE SR_MHZ(100) #define MIN_NUM_SAMPLES 4 #define DEFAULT_SAMPLERATE SR_MHZ(100) @@ -97,9 +95,9 @@ struct dev_context { int capture_ratio; int trigger_at; uint32_t channel_mask; - uint32_t trigger_mask[4]; - uint32_t trigger_value[4]; - uint32_t trigger_edge[4]; + uint32_t trigger_mask[NUM_TRIGGER_STAGES]; + uint32_t trigger_value[NUM_TRIGGER_STAGES]; + uint32_t trigger_edge[NUM_TRIGGER_STAGES]; int num_stages; uint16_t flag_reg; @@ -119,13 +117,13 @@ struct dev_context { unsigned char *raw_sample_buf; }; - -SR_PRIV extern const char *p_ols_channel_names[NUM_CHANNELS + 1]; +SR_PRIV extern const char *p_ols_channel_names[]; SR_PRIV int write_shortcommand(struct dev_context *devc, uint8_t command); SR_PRIV int write_longcommand(struct dev_context *devc, uint8_t command, uint8_t *data); SR_PRIV int p_ols_open(struct dev_context *devc); SR_PRIV int p_ols_close(struct dev_context *devc); -SR_PRIV int p_ols_configure_channels(const struct sr_dev_inst *sdi); +SR_PRIV void pols_channel_mask(const struct sr_dev_inst *sdi); +SR_PRIV int pols_convert_trigger(const struct sr_dev_inst *sdi); SR_PRIV struct sr_dev_inst *p_ols_get_metadata(uint8_t *buf, int bytes_read, struct dev_context *devc); SR_PRIV int p_ols_set_samplerate(const struct sr_dev_inst *sdi, uint64_t samplerate); SR_PRIV int p_ols_receive_data(int fd, int revents, void *cb_data);