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