]> sigrok.org Git - libsigrok.git/blame - sigrok-internal.h
sr: remove unused time/duration fields from datafeed packets
[libsigrok.git] / sigrok-internal.h
CommitLineData
1483577e
UH
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
b08024a8 23#include <stdarg.h>
cc8a7d25 24#include <glib.h>
69890f73
UH
25#ifdef HAVE_LIBUSB_1_0
26#include <libusb.h>
27#endif
b08024a8 28
4cea9eb2
UH
29/*--- Macros ----------------------------------------------------------------*/
30
31#ifndef ARRAY_SIZE
32#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
33#endif
34
35#ifndef ARRAY_AND_SIZE
36#define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
37#endif
38
f5a443f2 39/* Size of a datastore chunk in units */
8ff6afc9 40#define DATASTORE_CHUNKSIZE (512 * 1024)
f5a443f2 41
8233ff53
UH
42/*--- hwplugin.c ------------------------------------------------------------*/
43
44int load_hwplugins(void);
45
69890f73
UH
46#ifdef HAVE_LIBUSB_1_0
47struct sr_usb_device_instance {
48 uint8_t bus;
49 uint8_t address;
50 struct libusb_device_handle *devhdl;
51};
52#endif
53
54struct sr_serial_device_instance {
55 char *port;
56 int fd;
57};
58
59#ifdef HAVE_LIBUSB_1_0
60/* USB-specific instances */
61struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
62 uint8_t address, struct libusb_device_handle *hdl);
63void sr_usb_device_instance_free(struct sr_usb_device_instance *usb);
64#endif
65
66/* Serial-specific instances */
67struct sr_serial_device_instance *sr_serial_device_instance_new(
68 const char *port, int fd);
69void sr_serial_device_instance_free(struct sr_serial_device_instance *serial);
70
b08024a8
UH
71/*--- log.c -----------------------------------------------------------------*/
72
b08024a8 73int sr_log(int loglevel, const char *format, ...);
06dd80d4 74int sr_spew(const char *format, ...);
b08024a8
UH
75int sr_dbg(const char *format, ...);
76int sr_info(const char *format, ...);
77int sr_warn(const char *format, ...);
78int sr_err(const char *format, ...);
79
058b7035
UH
80/*--- hardware/common/serial.c ----------------------------------------------*/
81
1483577e
UH
82GSList *list_serial_ports(void);
83int serial_open(const char *pathname, int flags);
84int serial_close(int fd);
85int serial_flush(int fd);
86int serial_write(int fd, const void *buf, size_t count);
87int serial_read(int fd, void *buf, size_t count);
88void *serial_backup_params(int fd);
89void serial_restore_params(int fd, void *backup);
90int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
91 int flowcontrol);
92
058b7035
UH
93/*--- hardware/common/ezusb.c -----------------------------------------------*/
94
22b02383 95#ifdef HAVE_LIBUSB_1_0
058b7035 96int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
2d83e0f9 97int ezusb_install_firmware(libusb_device_handle *hdl, const char *filename);
058b7035
UH
98int ezusb_upload_firmware(libusb_device *dev, int configuration,
99 const char *filename);
22b02383 100#endif
058b7035
UH
101
102/*--- hardware/common/misc.c ------------------------------------------------*/
103
22b02383 104#ifdef HAVE_LIBUSB_1_0
a00ba012 105int opendev2(int device_index, struct sr_device_instance **sdi,
058b7035
UH
106 libusb_device *dev, struct libusb_device_descriptor *des,
107 int *skip, uint16_t vid, uint16_t pid, int interface);
a00ba012 108int opendev3(struct sr_device_instance **sdi, libusb_device *dev,
058b7035
UH
109 struct libusb_device_descriptor *des,
110 uint16_t vid, uint16_t pid, int interface);
22b02383 111#endif
058b7035 112
1483577e 113#endif