]> sigrok.org Git - libsigrok.git/blame - sigrok-internal.h
Initial support for CSV as output format.
[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
UH
23#include <stdarg.h>
24
4cea9eb2
UH
25/*--- Macros ----------------------------------------------------------------*/
26
27#ifndef ARRAY_SIZE
28#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
29#endif
30
31#ifndef ARRAY_AND_SIZE
32#define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
33#endif
34
f5a443f2
UH
35/* Size of a datastore chunk in units */
36#define DATASTORE_CHUNKSIZE 512000
37
8233ff53
UH
38/*--- hwplugin.c ------------------------------------------------------------*/
39
40int load_hwplugins(void);
41
b08024a8
UH
42/*--- log.c -----------------------------------------------------------------*/
43
44/* Log levels for sr_log() and friends. */
45#define SR_LOG_NONE 0
46#define SR_LOG_DBG 1
47#define SR_LOG_INFO 2
48#define SR_LOG_WARN 3
49#define SR_LOG_ERR 4
50
51int sr_log(int loglevel, const char *format, ...);
52int sr_dbg(const char *format, ...);
53int sr_info(const char *format, ...);
54int sr_warn(const char *format, ...);
55int sr_err(const char *format, ...);
56
058b7035
UH
57/*--- hardware/common/serial.c ----------------------------------------------*/
58
1483577e
UH
59GSList *list_serial_ports(void);
60int serial_open(const char *pathname, int flags);
61int serial_close(int fd);
62int serial_flush(int fd);
63int serial_write(int fd, const void *buf, size_t count);
64int serial_read(int fd, void *buf, size_t count);
65void *serial_backup_params(int fd);
66void serial_restore_params(int fd, void *backup);
67int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
68 int flowcontrol);
69
058b7035
UH
70/*--- hardware/common/ezusb.c -----------------------------------------------*/
71
22b02383 72#ifdef HAVE_LIBUSB_1_0
058b7035
UH
73int ezusb_reset(struct libusb_device_handle *hdl, int set_clear);
74int ezusb_install_firmware(libusb_device_handle *hdl, char *filename);
75int ezusb_upload_firmware(libusb_device *dev, int configuration,
76 const char *filename);
22b02383 77#endif
058b7035
UH
78
79/*--- hardware/common/misc.c ------------------------------------------------*/
80
22b02383 81#ifdef HAVE_LIBUSB_1_0
a00ba012 82int opendev2(int device_index, struct sr_device_instance **sdi,
058b7035
UH
83 libusb_device *dev, struct libusb_device_descriptor *des,
84 int *skip, uint16_t vid, uint16_t pid, int interface);
a00ba012 85int opendev3(struct sr_device_instance **sdi, libusb_device *dev,
058b7035
UH
86 struct libusb_device_descriptor *des,
87 uint16_t vid, uint16_t pid, int interface);
22b02383 88#endif
058b7035 89
1483577e 90#endif