]> sigrok.org Git - sigrok-cli.git/blob - sigrok-cli.h
Support uint64 input/output module options.
[sigrok-cli.git] / sigrok-cli.h
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 #include "config.h"
24 #ifdef HAVE_SRD
25 /* First, so we avoid a _POSIX_C_SOURCE warning. */
26 #include <libsigrokdecode/libsigrokdecode.h>
27 #endif
28 #include <libsigrok/libsigrok.h>
29
30 #define DEFAULT_OUTPUT_FORMAT "bits:width=64"
31 #define SAVE_CHUNK_SIZE 524288
32
33 /* main.c */
34 int select_channels(struct sr_dev_inst *sdi);
35
36 /* show.c */
37 void show_version(void);
38 void show_dev_list(void);
39 void show_dev_detail(void);
40 void show_pd_detail(void);
41 void show_input(void);
42 void show_output(void);
43
44 /* device.c */
45 GSList *device_scan(void);
46 struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi);
47
48 /* session.c */
49 void datafeed_in(const struct sr_dev_inst *sdi,
50                 const struct sr_datafeed_packet *packet, void *cb_data);
51 int opt_to_gvar(char *key, char *value, struct sr_config *src);
52 int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args);
53 void run_session(void);
54 void save_chunk_logic(struct sr_session *session, uint8_t *data,
55                 uint64_t data_len, int unitsize);
56
57 /* input.c */
58 void load_input_file(void);
59
60 /* decode.c */
61 #ifdef HAVE_SRD
62 int register_pds(const char *opt_pds, char *opt_pd_annotations);
63 int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations);
64 int setup_pd_annotations(char *opt_pd_annotations);
65 int setup_pd_meta(char *opt_pd_meta);
66 int setup_pd_binary(char *opt_pd_binary);
67 void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data);
68 void show_pd_meta(struct srd_proto_data *pdata, void *cb_data);
69 void show_pd_binary(struct srd_proto_data *pdata, void *cb_data);
70 void map_pd_channels(struct sr_dev_inst *sdi);
71 #endif
72
73 /* parsers.c */
74 struct sr_channel *find_channel(GSList *channellist, const char *channelname);
75 GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring);
76 int parse_triggerstring(const struct sr_dev_inst *sdi, const char *s,
77                 struct sr_trigger **trigger);
78 GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
79 GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs);
80 int canon_cmp(const char *str1, const char *str2);
81
82 /* anykey.c */
83 void add_anykey(struct sr_session *session);
84 void clear_anykey(void);
85
86 /* options.c */
87 extern gboolean opt_version;
88 extern gint opt_loglevel;
89 extern gboolean opt_scan_devs;
90 extern gboolean opt_wait_trigger;
91 extern gchar *opt_input_file;
92 extern gchar *opt_output_file;
93 extern gchar *opt_drv;
94 extern gchar *opt_config;
95 extern gchar *opt_channels;
96 extern gchar *opt_channel_group;
97 extern gchar *opt_triggers;
98 extern gchar *opt_pds;
99 #ifdef HAVE_SRD
100 extern gchar *opt_pd_stack;
101 extern gchar *opt_pd_annotations;
102 extern gchar *opt_pd_meta;
103 extern gchar *opt_pd_binary;
104 #endif
105 extern gchar *opt_input_format;
106 extern gchar *opt_output_format;
107 extern gchar *opt_show;
108 extern gchar *opt_time;
109 extern gchar *opt_samples;
110 extern gchar *opt_frames;
111 extern gchar *opt_continuous;
112 extern gchar *opt_set;
113 int parse_options(int argc, char **argv);
114 void show_help(void);
115
116 #endif