FreeCalypso > hg > fc-pcm-if
view sw/mcsi-rxtx/usercmd.c @ 16:f422d19c0118 default tip
fc-mcsi-rxtx: fix bug in PCM sample Rx
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 29 Oct 2024 01:41:33 +0000 |
parents | 315428573a25 |
children |
line wrap: on
line source
/* * This module implements fc-mcsi-rxtx user command dispatch. */ #include <sys/types.h> #include <ctype.h> #include <stdio.h> #include <string.h> #include <strings.h> #include <stdlib.h> extern char usercmd[]; extern void cmd_pcm_fill(); extern void cmd_print_rx(); extern void cmd_record(); extern void cmd_record_stop(); static void cmd_exit() { tty_cleanup(); exit(0); } static struct cmdtab { char *cmd; int minargs; int maxargs; void (*func)(); } cmdtab[] = { {"exit", 0, 0, cmd_exit}, {"pcm-fill", 0, 1, cmd_pcm_fill}, {"print-rx", 0, 0, cmd_print_rx}, {"quit", 0, 0, cmd_exit}, {"record", 1, 1, cmd_record}, {"record-stop", 0, 0, cmd_record_stop}, /* table search terminator */ {0, 0, 0, 0} }; void dispatch_user_cmd() { char *argv[10]; char *cp, **ap; struct cmdtab *tp; for (cp = usercmd; isspace(*cp); cp++) ; if (!*cp || *cp == '#') return; argv[0] = cp; while (*cp && !isspace(*cp)) cp++; if (*cp) *cp++ = '\0'; for (tp = cmdtab; tp->cmd; tp++) if (!strcmp(tp->cmd, argv[0])) break; if (!tp->func) { printf("error: no such command\n"); return; } for (ap = argv + 1; ; ) { while (isspace(*cp)) cp++; if (!*cp || *cp == '#') break; if (ap - argv - 1 >= tp->maxargs) { printf("error: too many arguments\n"); return; } if (*cp == '"') { *ap++ = ++cp; while (*cp && *cp != '"') cp++; if (*cp != '"') { printf("error: unterminated quoted string\n"); return; } *cp++ = '\0'; } else { *ap++ = cp; while (*cp && !isspace(*cp)) cp++; if (*cp) *cp++ = '\0'; } } if (ap - argv - 1 < tp->minargs) { printf("error: too few arguments\n"); return; } *ap = 0; tp->func(ap - argv, argv); }