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