]> sigrok.org Git - libsigrok.git/blame - sigrok-proto.h
demo: Eliminate unneeded tmp_u64.
[libsigrok.git] / sigrok-proto.h
CommitLineData
10509bc2
BV
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
c2bd92ec
UH
20#ifndef SIGROK_SIGROK_PROTO_H
21#define SIGROK_SIGROK_PROTO_H
10509bc2 22
10509bc2
BV
23/*--- backend.c -------------------------------------------------------------*/
24
a00ba012 25int sr_init(void);
cd009d55 26int sr_exit(void);
10509bc2 27
1352eedd
UH
28/*--- log.c -----------------------------------------------------------------*/
29
30int sr_set_loglevel(int loglevel);
31int sr_get_loglevel(void);
32
aa0b6b20
UH
33/*--- datastore.c -----------------------------------------------------------*/
34
c4911129
UH
35int sr_datastore_new(int unitsize, struct sr_datastore **ds);
36int sr_datastore_destroy(struct sr_datastore *ds);
37void sr_datastore_put(struct sr_datastore *ds, void *data, unsigned int length,
38 int in_unitsize, int *probelist);
aa0b6b20 39
aa0b6b20 40/*--- device.c --------------------------------------------------------------*/
10509bc2 41
2bf4aca6
UH
42void sr_device_scan(void);
43int sr_device_plugin_init(struct sr_device_plugin *plugin);
44void sr_device_close_all(void);
45GSList *sr_device_list(void);
c4911129
UH
46struct sr_device *sr_device_new(struct sr_device_plugin *plugin,
47 int plugin_index, int num_probes);
2bf4aca6
UH
48void sr_device_clear(struct sr_device *device);
49void sr_device_destroy(struct sr_device *dev);
10509bc2 50
2bf4aca6 51void sr_device_probe_clear(struct sr_device *device, int probenum);
8225e921 52void sr_device_probe_add(struct sr_device *device, const char *name);
03dbc020 53struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum);
8225e921
UH
54void sr_device_probe_name(struct sr_device *device, int probenum,
55 const char *name);
10509bc2 56
2bf4aca6 57void sr_device_trigger_clear(struct sr_device *device);
c4911129 58void sr_device_trigger_set(struct sr_device *device, int probenum,
8225e921 59 const char *trigger);
2bf4aca6 60gboolean sr_device_has_hwcap(struct sr_device *device, int hwcap);
10509bc2 61
aa0b6b20
UH
62/*--- filter.c --------------------------------------------------------------*/
63
c25d2039
UH
64int sr_filter_probes(int in_unitsize, int out_unitsize, int *probelist,
65 const char *data_in, uint64_t length_in, char **data_out,
66 uint64_t *length_out);
aa0b6b20
UH
67
68/*--- hwplugin.c ------------------------------------------------------------*/
69
ee4b6342 70GSList *sr_list_hwplugins(void);
10509bc2
BV
71
72/* Generic device instances */
a00ba012 73struct sr_device_instance *sr_device_instance_new(int index,
10509bc2 74 int status, const char *vendor, const char *model, const char *version);
d32d961d
UH
75struct sr_device_instance *sr_get_device_instance(GSList *device_instances,
76 int device_index);
a00ba012 77void sr_device_instance_free(struct sr_device_instance *sdi);
10509bc2
BV
78
79/* USB-specific instances */
22b02383 80#ifdef HAVE_LIBUSB_1_0
6c290072 81struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
10509bc2 82 uint8_t address, struct libusb_device_handle *hdl);
6c290072 83void sr_usb_device_instance_free(struct sr_usb_device_instance *usb);
22b02383 84#endif
10509bc2
BV
85
86/* Serial-specific instances */
6c290072 87struct sr_serial_device_instance *sr_serial_device_instance_new(
10509bc2 88 const char *port, int fd);
6c290072 89void sr_serial_device_instance_free(struct sr_serial_device_instance *serial);
10509bc2 90
a65de030
UH
91int sr_find_hwcap(int *capabilities, int hwcap);
92struct sr_hwcap_option *sr_find_hwcap_option(int hwcap);
6f1be0a2
UH
93void sr_source_remove(int fd);
94void sr_source_add(int fd, int events, int timeout,
a887e3da 95 sr_receive_data_callback rcv_cb, void *user_data);
10509bc2
BV
96
97/*--- session.c -------------------------------------------------------------*/
98
13b05733
UH
99typedef void (*sr_datafeed_callback) (struct sr_device *device,
100 struct sr_datafeed_packet *packet);
10509bc2
BV
101
102/* Session setup */
8a2efef2
UH
103int sr_session_load(const char *filename);
104struct sr_session *sr_session_new(void);
105void sr_session_destroy(void);
106void sr_session_device_clear(void);
107int sr_session_device_add(struct sr_device *device);
10509bc2 108
8bb416be 109#if 0
10509bc2 110/* Protocol analyzers setup */
8a2efef2 111void sr_session_pa_clear(void);
809c5f20 112void sr_session_pa_add(struct sr_analyzer *pa);
8bb416be 113#endif
10509bc2
BV
114
115/* Datafeed setup */
8a2efef2 116void sr_session_datafeed_callback_clear(void);
13b05733 117void sr_session_datafeed_callback_add(sr_datafeed_callback callback);
10509bc2
BV
118
119/* Session control */
8a2efef2
UH
120int sr_session_start(void);
121void sr_session_run(void);
122void sr_session_halt(void);
123void sr_session_stop(void);
c4911129
UH
124void sr_session_bus(struct sr_device *device,
125 struct sr_datafeed_packet *packet);
8225e921 126int sr_session_save(const char *filename);
8a2efef2 127void sr_session_source_add(int fd, int events, int timeout,
a887e3da 128 sr_receive_data_callback callback, void *user_data);
8a2efef2 129void sr_session_source_remove(int fd);
10509bc2 130
aa0b6b20 131/*--- input/input.c ---------------------------------------------------------*/
10509bc2 132
f50f3f40 133struct sr_input_format **sr_input_list(void);
aa0b6b20
UH
134
135/*--- output/output.c -------------------------------------------------------*/
136
f50f3f40 137struct sr_output_format **sr_output_list(void);
aa0b6b20
UH
138
139/*--- output/common.c -------------------------------------------------------*/
140
a00ba012
UH
141char *sr_samplerate_string(uint64_t samplerate);
142char *sr_period_string(uint64_t frequency);
c4911129
UH
143char **sr_parse_triggerstring(struct sr_device *device,
144 const char *triggerstring);
40f5ddac
BV
145uint64_t sr_parse_sizestring(const char *sizestring);
146uint64_t sr_parse_timestring(const char *timestring);
10509bc2 147
c2bd92ec 148#endif