X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fhardware%2Fchronovu-la%2Fprotocol.h;fp=src%2Fhardware%2Fchronovu-la%2Fprotocol.h;h=5a051da3882238e49f1ab673ff8f0ceb2e4b3244;hb=8cd15dd4ce2fdbefbcc6e64632c8006e5404f253;hp=609f37d9c5888b8ad1f6636037ddb826d91b018d;hpb=1aba65727015e298f213c851dbc8d2d57d27d37b;p=libsigrok.git diff --git a/src/hardware/chronovu-la/protocol.h b/src/hardware/chronovu-la/protocol.h index 609f37d9..5a051da3 100644 --- a/src/hardware/chronovu-la/protocol.h +++ b/src/hardware/chronovu-la/protocol.h @@ -28,7 +28,7 @@ #include #include "libsigrok-internal.h" -#define LOG_PREFIX "la8/la16" +#define LOG_PREFIX "chronovu-la" #define SDRAM_SIZE (8 * 1024 * 1024) #define MAX_NUM_SAMPLES SDRAM_SIZE @@ -44,28 +44,18 @@ enum { struct cv_profile { int model; const char *modelname; - const char *iproduct; /* USB iProduct string */ + const char *iproduct; unsigned int num_channels; uint64_t max_samplerate; const int num_trigger_matches; float trigger_constant; }; -/* Private, per-device-instance driver context. */ struct dev_context { - /** Device profile struct for this device. */ const struct cv_profile *prof; - - /** FTDI device context (used by libftdi). */ struct ftdi_context *ftdic; - - /** The currently configured samplerate of the device. */ uint64_t cur_samplerate; - - /** The current sampling limit (in ms). */ uint64_t limit_msec; - - /** The current sampling limit (in number of samples). */ uint64_t limit_samples; /** @@ -124,7 +114,6 @@ struct dev_context { uint64_t samplerates[255]; }; -/* protocol.c */ extern SR_PRIV const char *cv_channel_names[]; extern const struct cv_profile cv_profiles[]; SR_PRIV void cv_fill_samplerates_if_needed(const struct sr_dev_inst *sdi);