]> sigrok.org Git - sigrok-cli.git/blame_incremental - sigrok-cli.h
configure.ac: Bump package version to 0.7.1.
[sigrok-cli.git] / sigrok-cli.h
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok-cli 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
20#ifndef SIGROK_CLI_SIGROK_CLI_H
21#define SIGROK_CLI_SIGROK_CLI_H
22
23#ifdef HAVE_SRD
24/* First, so we avoid a _POSIX_C_SOURCE warning. */
25#include <libsigrokdecode/libsigrokdecode.h>
26#endif
27#include <libsigrok/libsigrok.h>
28
29#define DEFAULT_OUTPUT_FORMAT_FILE "srzip"
30#define DEFAULT_OUTPUT_FORMAT_NOFILE "bits:width=64"
31
32/* main.c */
33extern struct sr_context *sr_ctx;
34int select_channels(struct sr_dev_inst *sdi);
35int maybe_config_get(struct sr_dev_driver *driver,
36 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
37 uint32_t key, GVariant **gvar);
38int maybe_config_set(struct sr_dev_driver *driver,
39 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
40 uint32_t key, GVariant *gvar);
41int maybe_config_list(struct sr_dev_driver *driver,
42 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
43 uint32_t key, GVariant **gvar);
44
45/* show.c */
46void show_version(void);
47void show_supported(void);
48void show_dev_list(void);
49void show_dev_detail(void);
50void show_pd_detail(void);
51void show_input(void);
52void show_output(void);
53void show_transform(void);
54
55/* device.c */
56GSList *device_scan(void);
57struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi);
58
59/* session.c */
60void datafeed_in(const struct sr_dev_inst *sdi,
61 const struct sr_datafeed_packet *packet, void *cb_data);
62int opt_to_gvar(char *key, char *value, struct sr_config *src);
63int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args);
64void run_session(void);
65
66/* input.c */
67void load_input_file(void);
68
69/* decode.c */
70#ifdef HAVE_SRD
71int register_pds(gchar **all_pds, char *opt_pd_annotations);
72int setup_pd_annotations(char *opt_pd_annotations);
73int setup_pd_meta(char *opt_pd_meta);
74int setup_pd_binary(char *opt_pd_binary);
75void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data);
76void show_pd_meta(struct srd_proto_data *pdata, void *cb_data);
77void show_pd_binary(struct srd_proto_data *pdata, void *cb_data);
78void map_pd_channels(struct sr_dev_inst *sdi);
79#endif
80
81/* parsers.c */
82struct sr_channel *find_channel(GSList *channellist, const char *channelname);
83GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring);
84int parse_triggerstring(const struct sr_dev_inst *sdi, const char *s,
85 struct sr_trigger **trigger);
86GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
87GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs);
88int canon_cmp(const char *str1, const char *str2);
89int parse_driver(char *arg, struct sr_dev_driver **driver, GSList **drvopts);
90
91/* anykey.c */
92void add_anykey(struct sr_session *session);
93void clear_anykey(void);
94
95/* options.c */
96extern gboolean opt_version;
97extern gboolean opt_list_supported;
98extern gint opt_loglevel;
99extern gboolean opt_scan_devs;
100extern gboolean opt_wait_trigger;
101extern gchar *opt_input_file;
102extern gchar *opt_output_file;
103extern gchar *opt_drv;
104extern gchar *opt_config;
105extern gchar *opt_channels;
106extern gchar *opt_channel_group;
107extern gchar *opt_triggers;
108extern gchar **opt_pds;
109#ifdef HAVE_SRD
110extern gchar *opt_pd_annotations;
111extern gchar *opt_pd_meta;
112extern gchar *opt_pd_binary;
113extern gboolean opt_pd_samplenum;
114#endif
115extern gchar *opt_input_format;
116extern gchar *opt_output_format;
117extern gchar *opt_transform_module;
118extern gboolean opt_show;
119extern gchar *opt_time;
120extern gchar *opt_samples;
121extern gchar *opt_frames;
122extern gboolean opt_continuous;
123extern gchar *opt_get;
124extern gboolean opt_set;
125int parse_options(int argc, char **argv);
126void show_help(void);
127
128#endif