]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/fx2lafw/fx2lafw.h
sr: Enable fx2lafw driver per default.
[libsigrok.git] / hardware / fx2lafw / fx2lafw.h
... / ...
CommitLineData
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
20#ifndef LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
21#define LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
22
23#define USB_INTERFACE 0
24#define USB_CONFIGURATION 1
25#define TRIGGER_TYPES "01rf"
26
27#define MAX_RENUM_DELAY 3000 /* ms */
28#define NUM_SIMUL_TRANSFERS 32
29#define MAX_EMPTY_TRANSFERS (NUM_SIMUL_TRANSFERS * 2)
30
31struct fx2lafw_profile {
32 uint16_t vid;
33 uint16_t pid;
34
35 const char *vendor;
36 const char *model;
37 const char *model_version;
38
39 const char *firmware;
40
41 int num_probes;
42};
43
44struct context {
45 const struct fx2lafw_profile *profile;
46
47 /*
48 * Since we can't keep track of an fx2lafw device after upgrading
49 * the firmware (it re-enumerates into a different device address
50 * after the upgrade) this is like a global lock. No device will open
51 * until a proper delay after the last device was upgraded.
52 */
53 GTimeVal fw_updated;
54
55 /* Device/Capture Settings */
56 uint64_t cur_samplerate;
57 uint64_t limit_samples;
58
59 int num_samples;
60
61 void *session_dev_id;
62
63 struct sr_usb_dev_inst *usb;
64};
65
66#endif