view gsm-fw/lldbg/cmdtab.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 f5affe83ba2d
children
line wrap: on
line source

#include "cmdtab.h"

extern void lldbg_cmd_dump();
extern void lldbg_cmd_entry();
extern void lldbg_cmd_r8();
extern void lldbg_cmd_r16();
extern void lldbg_cmd_r32();
extern void lldbg_cmd_w8();
extern void lldbg_cmd_w16();
extern void lldbg_cmd_w32();

const struct cmdtab lldbg_cmdtab[] = {
	{"dump", lldbg_cmd_dump},
	{"entry", lldbg_cmd_entry},
	{"r8", lldbg_cmd_r8},
	{"r16", lldbg_cmd_r16},
	{"r32", lldbg_cmd_r32},
	{"w8", lldbg_cmd_w8},
	{"w16", lldbg_cmd_w16},
	{"w32", lldbg_cmd_w32},
	{0, 0}
};