]> sigrok.org Git - sigrok-cli.git/blame - sigrok-cli.h
Update for configuration API changes.
[sigrok-cli.git] / sigrok-cli.h
CommitLineData
43e5747a 1/*
630293b4 2 * This file is part of the sigrok-cli project.
43e5747a
UH
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
60e19738
UH
20#ifndef SIGROK_CLI_SIGROK_CLI_H
21#define SIGROK_CLI_SIGROK_CLI_H
43e5747a 22
2be182e6 23#ifdef HAVE_SRD
20fb52e0 24/* First, so we avoid a _POSIX_C_SOURCE warning. */
2be182e6
BV
25#include <libsigrokdecode/libsigrokdecode.h>
26#endif
20fb52e0 27#include <libsigrok/libsigrok.h>
2be182e6 28
5d7604d1
SA
29#define DEFAULT_OUTPUT_FORMAT_FILE "srzip"
30#define DEFAULT_OUTPUT_FORMAT_NOFILE "bits:width=64"
f0f54487 31#define SAVE_CHUNK_SIZE (512 * 1024)
2be182e6
BV
32
33/* main.c */
59e421bb 34extern struct sr_context *sr_ctx;
029d73fe 35int select_channels(struct sr_dev_inst *sdi);
24bd9719
BV
36gboolean config_key_has_cap(struct sr_dev_driver *driver,
37 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
38 uint32_t key, uint32_t capability);
39int maybe_config_get(struct sr_dev_driver *driver,
40 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
41 uint32_t key, GVariant **gvar);
42int maybe_config_set(struct sr_dev_driver *driver,
43 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
44 uint32_t key, GVariant *gvar);
45int maybe_config_list(struct sr_dev_driver *driver,
46 const struct sr_dev_inst *sdi, struct sr_channel_group *cg,
47 uint32_t key, GVariant **gvar);
2be182e6
BV
48
49/* show.c */
50void show_version(void);
51void show_dev_list(void);
52void show_dev_detail(void);
53void show_pd_detail(void);
a8b4041a 54void show_input(void);
ad6520c4 55void show_output(void);
6f7b4c5d 56void show_transform(void);
2be182e6
BV
57
58/* device.c */
59GSList *device_scan(void);
ca50f4b3 60struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi);
2be182e6
BV
61
62/* session.c */
2be182e6
BV
63void datafeed_in(const struct sr_dev_inst *sdi,
64 const struct sr_datafeed_packet *packet, void *cb_data);
ad54a1a6 65int opt_to_gvar(char *key, char *value, struct sr_config *src);
2be182e6
BV
66int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args);
67void run_session(void);
4bf77ec6
BV
68void save_chunk_logic(struct sr_session *session, uint8_t *data,
69 uint64_t data_len, int unitsize);
2be182e6
BV
70
71/* input.c */
72void load_input_file(void);
73
74/* decode.c */
8d52f788 75#ifdef HAVE_SRD
26c63758
BV
76int register_pds(const char *opt_pds, char *opt_pd_annotations);
77int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations);
78int setup_pd_annotations(char *opt_pd_annotations);
79int setup_pd_meta(char *opt_pd_meta);
80int setup_pd_binary(char *opt_pd_binary);
2be182e6
BV
81void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data);
82void show_pd_meta(struct srd_proto_data *pdata, void *cb_data);
83void show_pd_binary(struct srd_proto_data *pdata, void *cb_data);
3dfbfbc8 84void map_pd_channels(struct sr_dev_inst *sdi);
8d52f788 85#endif
43e5747a
UH
86
87/* parsers.c */
029d73fe
UH
88struct sr_channel *find_channel(GSList *channellist, const char *channelname);
89GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring);
4bf77ec6
BV
90int parse_triggerstring(const struct sr_dev_inst *sdi, const char *s,
91 struct sr_trigger **trigger);
63bb454c 92GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
87e24fed 93GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs);
d2ee5eea 94int canon_cmp(const char *str1, const char *str2);
d75c8529 95int parse_driver(char *arg, struct sr_dev_driver **driver, GSList **drvopts);
43e5747a
UH
96
97/* anykey.c */
4bf77ec6 98void add_anykey(struct sr_session *session);
43e5747a
UH
99void clear_anykey(void);
100
cd62e027
JS
101/* options.c */
102extern gboolean opt_version;
103extern gint opt_loglevel;
104extern gboolean opt_scan_devs;
105extern gboolean opt_wait_trigger;
106extern gchar *opt_input_file;
107extern gchar *opt_output_file;
108extern gchar *opt_drv;
109extern gchar *opt_config;
110extern gchar *opt_channels;
111extern gchar *opt_channel_group;
112extern gchar *opt_triggers;
113extern gchar *opt_pds;
114#ifdef HAVE_SRD
115extern gchar *opt_pd_stack;
116extern gchar *opt_pd_annotations;
117extern gchar *opt_pd_meta;
118extern gchar *opt_pd_binary;
119#endif
120extern gchar *opt_input_format;
121extern gchar *opt_output_format;
6f7b4c5d 122extern gchar *opt_transform_module;
2620358a 123extern gboolean opt_show;
cd62e027
JS
124extern gchar *opt_time;
125extern gchar *opt_samples;
126extern gchar *opt_frames;
2620358a 127extern gboolean opt_continuous;
62a64762 128extern gchar *opt_get;
2620358a 129extern gboolean opt_set;
cd62e027
JS
130int parse_options(int argc, char **argv);
131void show_help(void);
132
43e5747a 133#endif