view target-utils/libcommon/dispatch.c @ 992:a7b0b426f9ca

target-utils: boot ROM UART autodetection revamped The new implementation should work with both the familiar Calypso C035 boot ROM version found in our regular targets as well as the older Calypso F741979B version found on the vintage D-Sample board.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 21:28:41 +0000
parents f4fc449a64ea
children
line wrap: on
line source

/*
 * This module implements the dispatch of interactively entered
 * commands to their respective implementation functions via cmdtab.
 */

#include "cmdtab.h"

extern char command[];
extern struct cmdtab cmdtab[];

void
command_dispatch()
{
	char *cp, *np;
	struct cmdtab *tp;

	for (cp = command; *cp == ' '; cp++)
		;
	if (!*cp)
		return;
	for (np = cp; *cp && *cp != ' '; cp++)
		;
	if (*cp)
		*cp++ = '\0';
	for (tp = cmdtab; tp->cmd; tp++)
		if (!strcmp(tp->cmd, np))
			break;
	if (tp->func)
		tp->func(cp);
	else
		printf("ERROR: unknown or unimplemented command\n");
}