2011-01-10 12:44:11 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the sigrok project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-01-15 13:41:57 +00:00
|
|
|
#ifndef SIGROK_SIGROK_PROTO_H
|
|
|
|
#define SIGROK_SIGROK_PROTO_H
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/*--- backend.c -------------------------------------------------------------*/
|
|
|
|
|
2011-01-29 15:43:45 +00:00
|
|
|
int sr_init(void);
|
2011-02-22 17:13:32 +00:00
|
|
|
int sr_exit(void);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-05-04 17:03:01 +00:00
|
|
|
/*--- log.c -----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
int sr_set_loglevel(int loglevel);
|
|
|
|
int sr_get_loglevel(void);
|
|
|
|
|
2011-01-15 14:43:03 +00:00
|
|
|
/*--- datastore.c -----------------------------------------------------------*/
|
|
|
|
|
2011-02-08 20:22:10 +00:00
|
|
|
int sr_datastore_new(int unitsize, struct sr_datastore **ds);
|
|
|
|
int sr_datastore_destroy(struct sr_datastore *ds);
|
2011-12-25 18:59:15 +00:00
|
|
|
int sr_datastore_put(struct sr_datastore *ds, void *data, unsigned int length,
|
|
|
|
int in_unitsize, int *probelist);
|
2011-01-15 14:43:03 +00:00
|
|
|
|
|
|
|
/*--- device.c --------------------------------------------------------------*/
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-12-28 16:16:33 +00:00
|
|
|
int sr_device_scan(void);
|
2011-02-08 17:19:38 +00:00
|
|
|
GSList *sr_device_list(void);
|
2011-12-28 20:34:37 +00:00
|
|
|
struct sr_device *sr_device_new(const struct sr_device_plugin *plugin,
|
2011-12-29 16:04:31 +00:00
|
|
|
int plugin_index);
|
2011-12-28 16:16:33 +00:00
|
|
|
int sr_device_clear(struct sr_device *device);
|
|
|
|
int sr_device_probe_clear(struct sr_device *device, int probenum);
|
|
|
|
int sr_device_probe_add(struct sr_device *device, const char *name);
|
2011-12-28 20:34:37 +00:00
|
|
|
struct sr_probe *sr_device_probe_find(const struct sr_device *device,
|
|
|
|
int probenum);
|
2011-12-28 16:16:33 +00:00
|
|
|
int sr_device_probe_name(struct sr_device *device, int probenum,
|
|
|
|
const char *name);
|
|
|
|
int sr_device_trigger_clear(struct sr_device *device);
|
|
|
|
int sr_device_trigger_set(struct sr_device *device, int probenum,
|
|
|
|
const char *trigger);
|
2011-12-28 20:34:37 +00:00
|
|
|
gboolean sr_device_has_hwcap(const struct sr_device *device, int hwcap);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-01-15 14:43:03 +00:00
|
|
|
/*--- filter.c --------------------------------------------------------------*/
|
|
|
|
|
2011-12-22 13:10:16 +00:00
|
|
|
int sr_filter_probes(int in_unitsize, int out_unitsize, const int *probelist,
|
2011-06-18 22:55:36 +00:00
|
|
|
const unsigned char *data_in, uint64_t length_in,
|
|
|
|
char **data_out, uint64_t *length_out);
|
2011-01-15 14:43:03 +00:00
|
|
|
|
|
|
|
/*--- hwplugin.c ------------------------------------------------------------*/
|
|
|
|
|
2011-02-20 12:24:26 +00:00
|
|
|
GSList *sr_list_hwplugins(void);
|
2011-12-28 20:37:37 +00:00
|
|
|
int sr_init_hwplugins(struct sr_device_plugin *plugin);
|
2011-04-04 03:13:29 +00:00
|
|
|
void sr_cleanup_hwplugins(void);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* Generic device instances */
|
2011-01-29 15:43:45 +00:00
|
|
|
struct sr_device_instance *sr_device_instance_new(int index,
|
2011-01-10 12:44:11 +00:00
|
|
|
int status, const char *vendor, const char *model, const char *version);
|
2011-01-29 15:57:35 +00:00
|
|
|
struct sr_device_instance *sr_get_device_instance(GSList *device_instances,
|
|
|
|
int device_index);
|
2011-01-29 15:43:45 +00:00
|
|
|
void sr_device_instance_free(struct sr_device_instance *sdi);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* USB-specific instances */
|
2011-02-02 09:25:52 +00:00
|
|
|
#ifdef HAVE_LIBUSB_1_0
|
2011-01-30 15:44:26 +00:00
|
|
|
struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
|
2011-01-10 12:44:11 +00:00
|
|
|
uint8_t address, struct libusb_device_handle *hdl);
|
2011-01-30 15:44:26 +00:00
|
|
|
void sr_usb_device_instance_free(struct sr_usb_device_instance *usb);
|
2011-02-02 09:25:52 +00:00
|
|
|
#endif
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* Serial-specific instances */
|
2011-01-30 15:44:26 +00:00
|
|
|
struct sr_serial_device_instance *sr_serial_device_instance_new(
|
2011-01-10 12:44:11 +00:00
|
|
|
const char *port, int fd);
|
2011-01-30 15:44:26 +00:00
|
|
|
void sr_serial_device_instance_free(struct sr_serial_device_instance *serial);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-02-15 18:24:52 +00:00
|
|
|
int sr_find_hwcap(int *capabilities, int hwcap);
|
|
|
|
struct sr_hwcap_option *sr_find_hwcap_option(int hwcap);
|
2011-02-20 12:19:27 +00:00
|
|
|
void sr_source_remove(int fd);
|
|
|
|
void sr_source_add(int fd, int events, int timeout,
|
2011-02-20 13:14:13 +00:00
|
|
|
sr_receive_data_callback rcv_cb, void *user_data);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/*--- session.c -------------------------------------------------------------*/
|
|
|
|
|
2011-02-20 13:09:15 +00:00
|
|
|
typedef void (*sr_datafeed_callback) (struct sr_device *device,
|
|
|
|
struct sr_datafeed_packet *packet);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* Session setup */
|
2011-02-08 17:00:49 +00:00
|
|
|
int sr_session_load(const char *filename);
|
|
|
|
struct sr_session *sr_session_new(void);
|
|
|
|
void sr_session_destroy(void);
|
|
|
|
void sr_session_device_clear(void);
|
|
|
|
int sr_session_device_add(struct sr_device *device);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* Datafeed setup */
|
2011-02-08 17:00:49 +00:00
|
|
|
void sr_session_datafeed_callback_clear(void);
|
2011-02-20 13:09:15 +00:00
|
|
|
void sr_session_datafeed_callback_add(sr_datafeed_callback callback);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
|
|
|
/* Session control */
|
2011-02-08 17:00:49 +00:00
|
|
|
int sr_session_start(void);
|
|
|
|
void sr_session_run(void);
|
|
|
|
void sr_session_halt(void);
|
|
|
|
void sr_session_stop(void);
|
2011-02-08 20:22:10 +00:00
|
|
|
void sr_session_bus(struct sr_device *device,
|
|
|
|
struct sr_datafeed_packet *packet);
|
2011-02-20 12:53:13 +00:00
|
|
|
int sr_session_save(const char *filename);
|
2011-02-08 17:00:49 +00:00
|
|
|
void sr_session_source_add(int fd, int events, int timeout,
|
2011-02-20 13:14:13 +00:00
|
|
|
sr_receive_data_callback callback, void *user_data);
|
2011-02-08 17:00:49 +00:00
|
|
|
void sr_session_source_remove(int fd);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-01-15 14:43:03 +00:00
|
|
|
/*--- input/input.c ---------------------------------------------------------*/
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_input_format **sr_input_list(void);
|
2011-01-15 14:43:03 +00:00
|
|
|
|
|
|
|
/*--- output/output.c -------------------------------------------------------*/
|
|
|
|
|
2011-01-29 15:36:57 +00:00
|
|
|
struct sr_output_format **sr_output_list(void);
|
2011-01-15 14:43:03 +00:00
|
|
|
|
|
|
|
/*--- output/common.c -------------------------------------------------------*/
|
|
|
|
|
2011-01-29 15:43:45 +00:00
|
|
|
char *sr_samplerate_string(uint64_t samplerate);
|
|
|
|
char *sr_period_string(uint64_t frequency);
|
2011-02-08 20:22:10 +00:00
|
|
|
char **sr_parse_triggerstring(struct sr_device *device,
|
|
|
|
const char *triggerstring);
|
2011-11-27 18:31:25 +00:00
|
|
|
int sr_parse_sizestring(const char *sizestring, uint64_t *size);
|
2011-01-31 21:29:40 +00:00
|
|
|
uint64_t sr_parse_timestring(const char *timestring);
|
2011-11-19 00:41:41 +00:00
|
|
|
gboolean sr_parse_boolstring(const char *boolstring);
|
2011-01-10 12:44:11 +00:00
|
|
|
|
2011-01-15 13:41:57 +00:00
|
|
|
#endif
|