-
Notifications
You must be signed in to change notification settings - Fork 13
/
cmd.h
61 lines (48 loc) · 1.62 KB
/
cmd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* CLI commands hadlers for Si4703 based RDS scanner
Copyright (c) 2014 Andrey Chilikin (https://github.com/achilikin)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SI4703_CMD_H__
#define __SI4703_CMD_H__
#include <string.h>
#ifdef __cplusplus
extern "C" {
#if 0 // dummy bracket for VAssistX
}
#endif
#endif
#define UNUSED(x) x __attribute__((unused))
typedef int (*cmd_handler)(int fd, char *arg);
typedef struct cmd {
const char *name;
const char *help;
cmd_handler cmd;
} cmd_t;
int cmd_dump(int fd, char *arg);
int cmd_reset(int fd, char *arg);
int cmd_power(int fd, char *arg);
int cmd_scan(int fd, char *arg);
int cmd_spectrum(int fd, char *arg);
int cmd_spacing(int fd, char *arg);
int cmd_seek(int fd, char *arg);
int cmd_tune(int fd, char *arg);
int cmd_monitor(int fd, char *arg);
int cmd_volume(int fd, char *arg);
int cmd_set(int fd, char *arg);
int cmd_arg(char *cmd, const char *str, char **arg);
int cmd_is(char *str, const char *is);
extern int stop;
int is_stop(int *stop);
#ifdef __cplusplus
}
#endif
#endif