]> sigrok.org Git - libsigrok.git/blame - libsigrok-internal.h
Add a struct sr_context * parameter to sr_init() and sr_exit()
[libsigrok.git] / libsigrok-internal.h
CommitLineData
1483577e
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
1483577e
UH
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
0f8522bf
UH
20#ifndef LIBSIGROK_SIGROK_INTERNAL_H
21#define LIBSIGROK_SIGROK_INTERNAL_H
1483577e 22
b08024a8 23#include <stdarg.h>
cc8a7d25 24#include <glib.h>
1a081ca6 25#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
69890f73
UH
26#ifdef HAVE_LIBUSB_1_0
27#include <libusb.h>
28#endif
b08024a8 29
4cea9eb2
UH
30/*--- Macros ----------------------------------------------------------------*/
31
32#ifndef ARRAY_SIZE
33#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
34#endif
35
36#ifndef ARRAY_AND_SIZE
37#define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
38#endif
39
33df15f1
UH
40/* Versions < 2.30.0 of glib don't have g_match_info_unref(). */
41#if !GLIB_CHECK_VERSION(2,30,0)
42#define g_match_info_unref g_match_info_free
43#endif
44
f5a443f2 45/* Size of a datastore chunk in units */
8ff6afc9 46#define DATASTORE_CHUNKSIZE (512 * 1024)
f5a443f2 47
b8072700
PS
48struct sr_context {
49};
50
69890f73 51#ifdef HAVE_LIBUSB_1_0
d68e2d1a 52struct sr_usb_dev_inst {
69890f73
UH
53 uint8_t bus;
54 uint8_t address;
55 struct libusb_device_handle *devhdl;
56};
57#endif
58
f8c1fcda
BV
59#define SERIAL_PARITY_NONE 0
60#define SERIAL_PARITY_EVEN 1
61#define SERIAL_PARITY_ODD 2
d68e2d1a 62struct sr_serial_dev_inst {
69890f73
UH
63 char *port;
64 int fd;
65};
66
026c822d
UH
67/* Private driver context. */
68struct drv_context {
69 GSList *instances;
70};
71
48a486cd
BV
72/*--- log.c -----------------------------------------------------------------*/
73
74SR_PRIV int sr_log(int loglevel, const char *format, ...);
75SR_PRIV int sr_spew(const char *format, ...);
76SR_PRIV int sr_dbg(const char *format, ...);
77SR_PRIV int sr_info(const char *format, ...);
78SR_PRIV int sr_warn(const char *format, ...);
79SR_PRIV int sr_err(const char *format, ...);
80
81/*--- device.c --------------------------------------------------------------*/
82
83SR_PRIV struct sr_probe *sr_probe_new(int index, int type,
84 gboolean enabled, const char *name);
85
86/* Generic device instances */
87SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
88 const char *vendor, const char *model, const char *version);
89SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi);
69890f73 90#ifdef HAVE_LIBUSB_1_0
48a486cd 91
69890f73 92/* USB-specific instances */
d68e2d1a 93SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
69890f73 94 uint8_t address, struct libusb_device_handle *hdl);
d68e2d1a 95SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb);
69890f73
UH
96#endif
97
98/* Serial-specific instances */
d68e2d1a 99SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(
69890f73 100 const char *port, int fd);
d68e2d1a 101SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial);
69890f73 102
b08024a8 103
c09f0b57 104/*--- hwdriver.c ------------------------------------------------------------*/
996b0c72 105
93a04e3b 106SR_PRIV void sr_hw_cleanup_all(void);
48a486cd
BV
107SR_PRIV int sr_source_remove(int fd);
108SR_PRIV int sr_source_add(int fd, int events, int timeout,
109 sr_receive_data_callback_t cb, void *cb_data);
996b0c72 110
a1645fcd
BV
111/*--- session.c -------------------------------------------------------------*/
112
de4d3f99 113SR_PRIV int sr_session_send(const struct sr_dev_inst *sdi,
31ccebc4 114 struct sr_datafeed_packet *packet);
a1645fcd 115
058b7035
UH
116/*--- hardware/common/serial.c ----------------------------------------------*/
117
1a081ca6
UH
118SR_PRIV GSList *list_serial_ports(void);
119SR_PRIV int serial_open(const char *pathname, int flags);
120SR_PRIV int serial_close(int fd);
121SR_PRIV int serial_flush(int fd);
122SR_PRIV int serial_write(int fd, const void *buf, size_t count);
123SR_PRIV int serial_read(int fd, void *buf, size_t count);
124SR_PRIV void *serial_backup_params(int fd);
125SR_PRIV void serial_restore_params(int fd, void *backup);
0abee507 126SR_PRIV int serial_set_params(int fd, int baudrate, int bits, int parity,
1a081ca6 127 int stopbits, int flowcontrol);
792fc686 128SR_PRIV int serial_set_paramstr(int fd, const char *paramstr);
1483577e 129
058b7035
UH
130/*--- hardware/common/ezusb.c -----------------------------------------------*/
131
22b02383 132#ifdef HAVE_LIBUSB_1_0
1a081ca6
UH
133SR_PRIV int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
134SR_PRIV int ezusb_install_firmware(libusb_device_handle *hdl,
135 const char *filename);
136SR_PRIV int ezusb_upload_firmware(libusb_device *dev, int configuration,
137 const char *filename);
22b02383 138#endif
058b7035 139
1483577e 140#endif