]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/fx2lafw.h
fx2lafw: Exposed capabilities 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
20#ifndef LIBSIGROK_HARDWARE_FX2LAFW
21#define LIBSIGROK_HARDWARE_FX2LAFW
22
8b35f474
JH
23#define TRIGGER_TYPES "01rf"
24
187b3582
JH
25struct fx2lafw_profile {
26 uint16_t vid;
27 uint16_t pid;
28
29 char *vendor;
30 char *model;
31 char *model_version;
32
33 int num_probes;
34};
35
36struct fx2lafw_device {
37 struct fx2lafw_profile *profile;
38
39 void *session_data;
40
41 struct sr_usb_device_instance *usb;
42};
43
f302a082 44#endif