]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/fx2lafw.h
fx2lafw: Removed a line of redundant code
[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
6c6781b6
JH
25#define NUM_TRIGGER_STAGES 4
26#define TRIGGER_TYPES "01"
8b35f474 27
43125c69 28#define MAX_RENUM_DELAY 3000 /* ms */
ecc16ed0 29#define NUM_SIMUL_TRANSFERS 32
610dbb70 30#define MAX_EMPTY_TRANSFERS (NUM_SIMUL_TRANSFERS * 2)
43125c69 31
6c6781b6
JH
32/* Software trigger implementation: positive values indicate trigger stage. */
33#define TRIGGER_FIRED -1
34
187b3582
JH
35struct fx2lafw_profile {
36 uint16_t vid;
37 uint16_t pid;
38
6ccfadaf
JH
39 const char *vendor;
40 const char *model;
41 const char *model_version;
187b3582 42
f8b07fc6
JH
43 const char *firmware;
44
187b3582
JH
45 int num_probes;
46};
47
772a0e61 48struct context {
4679d14d 49 const struct fx2lafw_profile *profile;
187b3582 50
b1eeb67e
JH
51 /*
52 * Since we can't keep track of an fx2lafw device after upgrading
53 * the firmware (it re-enumerates into a different device address
54 * after the upgrade) this is like a global lock. No device will open
55 * until a proper delay after the last device was upgraded.
56 */
57 GTimeVal fw_updated;
58
7cb621d4 59 /* Device/Capture Settings */
e3186647 60 uint64_t cur_samplerate;
7cb621d4
JH
61 uint64_t limit_samples;
62
6c6781b6
JH
63 uint8_t trigger_mask[NUM_TRIGGER_STAGES];
64 uint8_t trigger_value[NUM_TRIGGER_STAGES];
65 int trigger_stage;
66 uint8_t trigger_buffer[NUM_TRIGGER_STAGES];
67
2e526f4a
JH
68 int num_samples;
69
3cd3a20b 70 void *session_dev_id;
187b3582 71
b1eeb67e 72 struct sr_usb_dev_inst *usb;
187b3582
JH
73};
74
f302a082 75#endif