]> sigrok.org Git - libsigrok.git/blame - sigrok-proto.h
Move the probe naming to the creator of the device, and let each driver name its...
[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);
15278f3e
UH
37int 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
0e3b1439 42int sr_device_scan(void);
2bf4aca6 43GSList *sr_device_list(void);
08d4cc1d 44struct sr_device *sr_device_new(const struct sr_device_plugin *plugin,
464d12c7 45 int plugin_index);
0e3b1439 46int sr_device_clear(struct sr_device *device);
0e3b1439
UH
47int sr_device_probe_clear(struct sr_device *device, int probenum);
48int sr_device_probe_add(struct sr_device *device, const char *name);
08d4cc1d
UH
49struct sr_probe *sr_device_probe_find(const struct sr_device *device,
50 int probenum);
0e3b1439
UH
51int sr_device_probe_name(struct sr_device *device, int probenum,
52 const char *name);
0e3b1439
UH
53int sr_device_trigger_clear(struct sr_device *device);
54int sr_device_trigger_set(struct sr_device *device, int probenum,
55 const char *trigger);
08d4cc1d 56gboolean sr_device_has_hwcap(const struct sr_device *device, int hwcap);
10509bc2 57
aa0b6b20
UH
58/*--- filter.c --------------------------------------------------------------*/
59
488a13b1 60int sr_filter_probes(int in_unitsize, int out_unitsize, const int *probelist,
60eb1eb5
BV
61 const unsigned char *data_in, uint64_t length_in,
62 char **data_out, uint64_t *length_out);
aa0b6b20
UH
63
64/*--- hwplugin.c ------------------------------------------------------------*/
65
ee4b6342 66GSList *sr_list_hwplugins(void);
155d1012 67int sr_init_hwplugins(struct sr_device_plugin *plugin);
8722c31e 68void sr_cleanup_hwplugins(void);
10509bc2
BV
69
70/* Generic device instances */
a00ba012 71struct sr_device_instance *sr_device_instance_new(int index,
10509bc2 72 int status, const char *vendor, const char *model, const char *version);
d32d961d
UH
73struct sr_device_instance *sr_get_device_instance(GSList *device_instances,
74 int device_index);
a00ba012 75void sr_device_instance_free(struct sr_device_instance *sdi);
10509bc2
BV
76
77/* USB-specific instances */
22b02383 78#ifdef HAVE_LIBUSB_1_0
6c290072 79struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
10509bc2 80 uint8_t address, struct libusb_device_handle *hdl);
6c290072 81void sr_usb_device_instance_free(struct sr_usb_device_instance *usb);
22b02383 82#endif
10509bc2
BV
83
84/* Serial-specific instances */
6c290072 85struct sr_serial_device_instance *sr_serial_device_instance_new(
10509bc2 86 const char *port, int fd);
6c290072 87void sr_serial_device_instance_free(struct sr_serial_device_instance *serial);
10509bc2 88
a65de030
UH
89int sr_find_hwcap(int *capabilities, int hwcap);
90struct sr_hwcap_option *sr_find_hwcap_option(int hwcap);
6f1be0a2
UH
91void sr_source_remove(int fd);
92void sr_source_add(int fd, int events, int timeout,
a887e3da 93 sr_receive_data_callback rcv_cb, void *user_data);
10509bc2
BV
94
95/*--- session.c -------------------------------------------------------------*/
96
13b05733
UH
97typedef void (*sr_datafeed_callback) (struct sr_device *device,
98 struct sr_datafeed_packet *packet);
10509bc2
BV
99
100/* Session setup */
8a2efef2
UH
101int sr_session_load(const char *filename);
102struct sr_session *sr_session_new(void);
103void sr_session_destroy(void);
104void sr_session_device_clear(void);
105int sr_session_device_add(struct sr_device *device);
10509bc2 106
8bb416be 107#if 0
10509bc2 108/* Protocol analyzers setup */
8a2efef2 109void sr_session_pa_clear(void);
809c5f20 110void sr_session_pa_add(struct sr_analyzer *pa);
8bb416be 111#endif
10509bc2
BV
112
113/* Datafeed setup */
8a2efef2 114void sr_session_datafeed_callback_clear(void);
13b05733 115void sr_session_datafeed_callback_add(sr_datafeed_callback callback);
10509bc2
BV
116
117/* Session control */
8a2efef2
UH
118int sr_session_start(void);
119void sr_session_run(void);
120void sr_session_halt(void);
121void sr_session_stop(void);
c4911129
UH
122void sr_session_bus(struct sr_device *device,
123 struct sr_datafeed_packet *packet);
8225e921 124int sr_session_save(const char *filename);
8a2efef2 125void sr_session_source_add(int fd, int events, int timeout,
a887e3da 126 sr_receive_data_callback callback, void *user_data);
8a2efef2 127void sr_session_source_remove(int fd);
10509bc2 128
aa0b6b20 129/*--- input/input.c ---------------------------------------------------------*/
10509bc2 130
f50f3f40 131struct sr_input_format **sr_input_list(void);
aa0b6b20
UH
132
133/*--- output/output.c -------------------------------------------------------*/
134
f50f3f40 135struct sr_output_format **sr_output_list(void);
aa0b6b20
UH
136
137/*--- output/common.c -------------------------------------------------------*/
138
a00ba012
UH
139char *sr_samplerate_string(uint64_t samplerate);
140char *sr_period_string(uint64_t frequency);
c4911129
UH
141char **sr_parse_triggerstring(struct sr_device *device,
142 const char *triggerstring);
f64c1414 143int sr_parse_sizestring(const char *sizestring, uint64_t *size);
40f5ddac 144uint64_t sr_parse_timestring(const char *timestring);
4d436e71 145gboolean sr_parse_boolstring(const char *boolstring);
10509bc2 146
c2bd92ec 147#endif