FreeCalypso > hg > freecalypso-tools
view rvinterf/old/g23sh/usercmd.c @ 497:74610c4f10f7
target-utils: added 10 ms delay at the end of abb_power_off()
The deosmification of the ABB access code (replacement of osmo_delay_ms()
bogus delays with correctly-timed ones, which are significantly shorter)
had one annoying side effect: when executing the poweroff command from
any of the programs, one last '=' prompt character was being sent (and
received by the x86 host) as the Calypso board powers off. With delays
being shorter now, the abb_power_off() function was returning and the
standalone program's main loop was printing its prompt before the Iota chip
fully executed the switch-off sequence!
I thought about inserting an endless tight loop at the end of the
abb_power_off() function, but the implemented solution of a 10 ms delay
is a little nicer IMO because if the DEVOFF operation doesn't happen for
some reason in a manual hacking scenario, there won't be an artificial
blocker in the form of a tight loop keeping us from further poking around.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 25 May 2019 20:44:05 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
/* * This module implements g23sh 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_sendsp(); void cmd_exit() { tty_cleanup(); exit(0); } static struct cmdtab { char *cmd; int minargs; int maxargs; void (*func)(); } cmdtab[] = { {"exit", 0, 0, cmd_exit}, {"quit", 0, 0, cmd_exit}, {"sp", 2, 2, cmd_sendsp}, {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); }