Uwe Hermann | 43e5747 | 2011-12-30 11:23:22 +0100 | [diff] [blame] | 1 | /* |
Uwe Hermann | 630293b | 2013-04-23 22:10:41 +0200 | [diff] [blame] | 2 | * This file is part of the sigrok-cli project. |
Uwe Hermann | 43e5747 | 2011-12-30 11:23:22 +0100 | [diff] [blame] | 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 | |
Uwe Hermann | 60e1973 | 2012-02-04 10:41:30 +0100 | [diff] [blame] | 20 | #ifndef SIGROK_CLI_SIGROK_CLI_H |
| 21 | #define SIGROK_CLI_SIGROK_CLI_H |
Uwe Hermann | 43e5747 | 2011-12-30 11:23:22 +0100 | [diff] [blame] | 22 | |
Bert Vermeulen | 2be182e | 2013-11-17 13:15:38 +0100 | [diff] [blame] | 23 | #include "config.h" |
Bert Vermeulen | 2be182e | 2013-11-17 13:15:38 +0100 | [diff] [blame] | 24 | #ifdef HAVE_SRD |
Uwe Hermann | 20fb52e | 2013-11-19 11:48:06 +0100 | [diff] [blame] | 25 | /* First, so we avoid a _POSIX_C_SOURCE warning. */ |
Bert Vermeulen | 2be182e | 2013-11-17 13:15:38 +0100 | [diff] [blame] | 26 | #include <libsigrokdecode/libsigrokdecode.h> |
| 27 | #endif |
Uwe Hermann | 20fb52e | 2013-11-19 11:48:06 +0100 | [diff] [blame] | 28 | #include <libsigrok/libsigrok.h> |
Bert Vermeulen | 2be182e | 2013-11-17 13:15:38 +0100 | [diff] [blame] | 29 | |
| 30 | #define DEFAULT_OUTPUT_FORMAT "bits:width=64" |
| 31 | |
| 32 | /* main.c */ |
| 33 | int select_probes(struct sr_dev_inst *sdi); |
| 34 | |
| 35 | /* show.c */ |
| 36 | void show_version(void); |
| 37 | void show_dev_list(void); |
| 38 | void show_dev_detail(void); |
| 39 | void show_pd_detail(void); |
| 40 | |
| 41 | /* device.c */ |
| 42 | GSList *device_scan(void); |
| 43 | struct sr_probe_group *select_probe_group(struct sr_dev_inst *sdi); |
| 44 | |
| 45 | /* session.c */ |
| 46 | int setup_output_format(void); |
| 47 | void datafeed_in(const struct sr_dev_inst *sdi, |
| 48 | const struct sr_datafeed_packet *packet, void *cb_data); |
| 49 | int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args); |
| 50 | void run_session(void); |
| 51 | |
| 52 | /* input.c */ |
| 53 | void load_input_file(void); |
| 54 | |
| 55 | /* decode.c */ |
Bert Vermeulen | 26c6375 | 2013-11-17 18:51:15 +0100 | [diff] [blame] | 56 | int register_pds(const char *opt_pds, char *opt_pd_annotations); |
| 57 | int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations); |
| 58 | int setup_pd_annotations(char *opt_pd_annotations); |
| 59 | int setup_pd_meta(char *opt_pd_meta); |
| 60 | int setup_pd_binary(char *opt_pd_binary); |
Bert Vermeulen | 2be182e | 2013-11-17 13:15:38 +0100 | [diff] [blame] | 61 | void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data); |
| 62 | void show_pd_meta(struct srd_proto_data *pdata, void *cb_data); |
| 63 | void show_pd_binary(struct srd_proto_data *pdata, void *cb_data); |
Uwe Hermann | 43e5747 | 2011-12-30 11:23:22 +0100 | [diff] [blame] | 64 | |
| 65 | /* parsers.c */ |
Bert Vermeulen | 497f536 | 2012-10-14 14:53:30 +0200 | [diff] [blame] | 66 | GSList *parse_probestring(struct sr_dev_inst *sdi, const char *probestring); |
Bert Vermeulen | 63bb454 | 2012-07-16 01:03:30 +0200 | [diff] [blame] | 67 | GHashTable *parse_generic_arg(const char *arg, gboolean sep_first); |
Uwe Hermann | d2ee5ee | 2012-05-30 22:15:29 +0200 | [diff] [blame] | 68 | int canon_cmp(const char *str1, const char *str2); |
Uwe Hermann | 43e5747 | 2011-12-30 11:23:22 +0100 | [diff] [blame] | 69 | |
| 70 | /* anykey.c */ |
| 71 | void add_anykey(void); |
| 72 | void clear_anykey(void); |
| 73 | |
| 74 | #endif |