2003-02-17 Marcel Telka <marcel@telka.sk>

* src/help.c (help): Added help for new command 'script'.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@363 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent c848466df3
commit 66bdc12f55

@ -1,3 +1,7 @@
2003-02-17 Marcel Telka <marcel@telka.sk>
* src/help.c (help): Added help for new command 'script'.
2003-02-17 Marcel Telka <marcel@telka.sk>
* src/flash-intel.c (intel_flash_autodetect): Fixed Intel flash algorithm Id.

@ -53,6 +53,7 @@ help( const char *cmd )
"readmem read content of the memory and write it to file\n"
"flashmem burn flash memory with data from a file\n"
"set set external signal value\n"
"script run command sequence from external file\n"
"\n"
"Type \"help COMMAND\" for details about particular command.\n", PACKAGE
);
@ -200,6 +201,13 @@ help( const char *cmd )
"DATA desired output signal value ('0' or '1'); used only if DIR\n"
" is 'out'\n"
);
else if (strcmp( cmd, "script" ) == 0)
printf(
"Usage: script FILENAME\n"
"Run command sequence from external FILENAME.\n"
"\n"
"FILENAME Name of the file with commands\n"
);
else
printf( "Invalid command.\n" );
}

Loading…
Cancel
Save