added echo command in tcl. Issues a LOG_USER() for the single argument.
git-svn-id: svn://svn.berlios.de/openocd/trunk@746 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
d8957cb107
commit
002e3fcbdb
|
@ -311,6 +311,17 @@ Jim_Command_find(Jim_Interp *interp,
|
||||||
return JIM_OK;
|
return JIM_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
Jim_Command_echo(Jim_Interp *interp,
|
||||||
|
int argc,
|
||||||
|
Jim_Obj *const *argv)
|
||||||
|
{
|
||||||
|
if (argc!=2)
|
||||||
|
return JIM_ERR;
|
||||||
|
char *str = (char*)Jim_GetString(argv[1], NULL);
|
||||||
|
LOG_USER("%s", str);
|
||||||
|
return JIM_OK;
|
||||||
|
}
|
||||||
|
|
||||||
void initJim(void)
|
void initJim(void)
|
||||||
{
|
{
|
||||||
|
@ -323,6 +334,7 @@ void initJim(void)
|
||||||
Jim_CreateCommand(interp, "openocd", Jim_Command_openocd, NULL, NULL);
|
Jim_CreateCommand(interp, "openocd", Jim_Command_openocd, NULL, NULL);
|
||||||
Jim_CreateCommand(interp, "openocd_throw", Jim_Command_openocd_throw, NULL, NULL);
|
Jim_CreateCommand(interp, "openocd_throw", Jim_Command_openocd_throw, NULL, NULL);
|
||||||
Jim_CreateCommand(interp, "find", Jim_Command_find, NULL, NULL);
|
Jim_CreateCommand(interp, "find", Jim_Command_find, NULL, NULL);
|
||||||
|
Jim_CreateCommand(interp, "echo", Jim_Command_echo, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
|
|
|
@ -1,4 +1,16 @@
|
||||||
# implements Tcl procedures/functions
|
# implements Tcl procedures/functions
|
||||||
proc peek {address} {
|
proc peek {address} {
|
||||||
return [openocd mdw $address]
|
return [openocd mdw $address]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Production command
|
||||||
|
proc board_produce {filename serialnumber} {
|
||||||
|
openocd "reset init"
|
||||||
|
openocd "flash write_image erase $filename [flash] bin"]]
|
||||||
|
openocd "verify_image $filename [flash] bin"]]
|
||||||
|
echo "Successfully ran production procedure"
|
||||||
|
}
|
||||||
|
|
||||||
|
proc board_test {} {
|
||||||
|
echo "Production test not implemented"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue