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