blob: 32981e3b13949d421e630e1edc1bb84fea0f84dc [file] [log] [blame]
Uwe Hermann43e57472011-12-30 11:23:22 +01001/*
Uwe Hermann630293b2013-04-23 22:10:41 +02002 * This file is part of the sigrok-cli project.
Uwe Hermann43e57472011-12-30 11:23:22 +01003 *
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
Uwe Hermann60e19732012-02-04 10:41:30 +010020#ifndef SIGROK_CLI_SIGROK_CLI_H
21#define SIGROK_CLI_SIGROK_CLI_H
Uwe Hermann43e57472011-12-30 11:23:22 +010022
Bert Vermeulen2be182e2013-11-17 13:15:38 +010023#include "config.h"
24#include <libsigrok/libsigrok.h>
25#ifdef HAVE_SRD
26#include <libsigrokdecode/libsigrokdecode.h>
27#endif
28
29#define DEFAULT_OUTPUT_FORMAT "bits:width=64"
30
31/* main.c */
32int select_probes(struct sr_dev_inst *sdi);
33
34/* show.c */
35void show_version(void);
36void show_dev_list(void);
37void show_dev_detail(void);
38void show_pd_detail(void);
39
40/* device.c */
41GSList *device_scan(void);
42struct sr_probe_group *select_probe_group(struct sr_dev_inst *sdi);
43
44/* session.c */
45int setup_output_format(void);
46void datafeed_in(const struct sr_dev_inst *sdi,
47 const struct sr_datafeed_packet *packet, void *cb_data);
48int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args);
49void run_session(void);
50
51/* input.c */
52void load_input_file(void);
53
54/* decode.c */
55int register_pds(const char *pdstring);
56int setup_pd_stack(void);
57int setup_pd_annotations(void);
58int setup_pd_meta(void);
59int setup_pd_binary(void);
60void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data);
61void show_pd_meta(struct srd_proto_data *pdata, void *cb_data);
62void show_pd_binary(struct srd_proto_data *pdata, void *cb_data);
Uwe Hermann43e57472011-12-30 11:23:22 +010063
64/* parsers.c */
Bert Vermeulen497f5362012-10-14 14:53:30 +020065GSList *parse_probestring(struct sr_dev_inst *sdi, const char *probestring);
Bert Vermeulen63bb4542012-07-16 01:03:30 +020066GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
Uwe Hermannd2ee5ee2012-05-30 22:15:29 +020067int canon_cmp(const char *str1, const char *str2);
Uwe Hermann43e57472011-12-30 11:23:22 +010068
69/* anykey.c */
70void add_anykey(void);
71void clear_anykey(void);
72
73#endif