On Wed, Nov 26, 2003 at 10:04:14PM +0800, Steve Underwood wrote:
> >Remote command help:
> >help This help text
> >erase Erase target Flash (info, main, or all)
> >puc Reset target over JTAG, using PUC
> >reset Reset target over JTAG, using hardware reset
> >identify Identify what target is connected to the JTAG port
> >jtag Define/report how JTAG is to be handled when running ('release'
> >or 'hold')
> >vcc Define/report the VCC of the MSP430
> >dump [DEBUG] Read out target registers
> >
> >
> Where did you find that information? It certainly needs adding to the
> documentation, but I can't find it in CVS. I can only find it in my
> source code, which isn't in the public CVS.
Some kind of detective work ;-) In the cvs I found
(...skeleton...)
static const RCMD_TABLE remote_commands[] =
{
RCMD(help, "This help text"),
RCMD(erase, "Erase target flash memory"),
{0,0,0} //sentinel, end of table marker
};
And I tried "monitor erase" and "monitor help". The latter worked
and prints the commands above shown.
M.