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