]> sigrok.org Git - libsigrok.git/blob - sigrok-internal.h
Add SR_ERR_ARG #define.
[libsigrok.git] / sigrok-internal.h
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
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 SIGROK_SIGROK_INTERNAL_H
21 #define SIGROK_SIGROK_INTERNAL_H
22
23 /*--- Macros ----------------------------------------------------------------*/
24
25 #ifndef ARRAY_SIZE
26 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
27 #endif
28
29 #ifndef ARRAY_AND_SIZE
30 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
31 #endif
32
33 /* Size of a datastore chunk in units */
34 #define DATASTORE_CHUNKSIZE 512000
35
36 /*--- hwplugin.c ------------------------------------------------------------*/
37
38 int load_hwplugins(void);
39
40 /*--- hardware/common/serial.c ----------------------------------------------*/
41
42 GSList *list_serial_ports(void);
43 int serial_open(const char *pathname, int flags);
44 int serial_close(int fd);
45 int serial_flush(int fd);
46 int serial_write(int fd, const void *buf, size_t count);
47 int serial_read(int fd, void *buf, size_t count);
48 void *serial_backup_params(int fd);
49 void serial_restore_params(int fd, void *backup);
50 int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
51                       int flowcontrol);
52
53 /*--- hardware/common/ezusb.c -----------------------------------------------*/
54
55 #ifdef HAVE_LIBUSB_1_0
56 int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
57 int ezusb_install_firmware(libusb_device_handle *hdl, char *filename);
58 int ezusb_upload_firmware(libusb_device *dev, int configuration,
59                           const char *filename);
60 #endif
61
62 /*--- hardware/common/misc.c ------------------------------------------------*/
63
64 #ifdef HAVE_LIBUSB_1_0
65 int opendev2(int device_index, struct sr_device_instance **sdi,
66              libusb_device *dev, struct libusb_device_descriptor *des,
67              int *skip, uint16_t vid, uint16_t pid, int interface);
68 int opendev3(struct sr_device_instance **sdi, libusb_device *dev,
69              struct libusb_device_descriptor *des,
70              uint16_t vid, uint16_t pid, int interface);
71 #endif
72
73 #endif