]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/fx2lafw.h
sr: Name all callback data 'cb_data'.
[libsigrok.git] / hardware / fx2lafw / fx2lafw.h
CommitLineData
f302a082
JH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
6c39d99a
UH
20#ifndef LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
21#define LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
f302a082 22
b1eeb67e
JH
23#define USB_INTERFACE 0
24#define USB_CONFIGURATION 1
25#define TRIGGER_TYPES "01rf"
26#define FIRMWARE FIRMWARE_DIR "/fx2lafw-cwav-usbeeax.fw"
8b35f474 27
43125c69
JH
28#define FIRMWARE_VID 0x0925
29#define FIRMWARE_PID 0x3881
30
31#define MAX_RENUM_DELAY 3000 /* ms */
610dbb70
JH
32#define NUM_SIMUL_TRANSFERS 10
33#define MAX_EMPTY_TRANSFERS (NUM_SIMUL_TRANSFERS * 2)
43125c69 34
187b3582
JH
35struct fx2lafw_profile {
36 uint16_t vid;
37 uint16_t pid;
38
39 char *vendor;
40 char *model;
41 char *model_version;
42
43 int num_probes;
44};
45
772a0e61 46struct context {
187b3582
JH
47 struct fx2lafw_profile *profile;
48
b1eeb67e
JH
49 /*
50 * Since we can't keep track of an fx2lafw device after upgrading
51 * the firmware (it re-enumerates into a different device address
52 * after the upgrade) this is like a global lock. No device will open
53 * until a proper delay after the last device was upgraded.
54 */
55 GTimeVal fw_updated;
56
7cb621d4
JH
57 /* Device/Capture Settings */
58 uint64_t limit_samples;
59
187b3582
JH
60 void *session_data;
61
b1eeb67e 62 struct sr_usb_dev_inst *usb;
187b3582
JH
63};
64
f302a082 65#endif