document feature to set active data register with dr

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1303 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 17 years ago
parent 3c9dae4961
commit a4a48f0158

@ -1,3 +1,8 @@
2008-07-15 Arnim Laeuger <arniml@users.sourceforge.net>
* doc/UrJTAG.txt, src/cmd/dr.c (cmd_dr_help):
document feature to set active data register with dr
2008-07-14 Arnim Laeuger <arniml@users.sourceforge.net>
* include/chain.h, include/tap.h, src/cmd/reset.c, src/tap/detect.c,

@ -567,7 +567,7 @@ example usage.
*detect*:: detect parts on the JTAG chain
*detectflash*:: detect parameters of flash chips attached to a part
*discovery*:: discovery of unknown parts in the JTAG chain
*dr*:: display active data register for a part
*dr*:: display or set active data register for a part
*endian*:: set/print endianess for reading/writing binary files
*eraseflash*:: erase flash memory by number of blocks
*flashmem*:: burn flash memory with data from a file
@ -789,7 +789,7 @@ using one of the supplied tools (or use the new BSDL subsystem, see below).
The following commands can be used to directly manipulate and display the state
of the TAP controller(s) and registers in the chain:
*dr*:: display active data register for a part
*dr*:: display or set active data register for a part
*instruction*:: change active instruction for a part or declare new instruction
*get*:: get external signal value
*scan*:: detect changes on input pins of current part

@ -101,11 +101,13 @@ cmd_dr_help( void )
{
printf( _(
"Usage: %s [DIR]\n"
"Display input or output data register content.\n"
"Usage: %s BITSTRING\n"
"Display input or output data register content or set current register.\n"
"\n"
"DIR requested data register; possible values: 'in' for\n"
" input and 'out' for output; default is 'out'\n"
), "dr" );
" input and 'out' for output; default is 'out'\n"
"BITSTRING set current data register with BITSTRING (e.g. 01010)\n"
), "dr", "dr" );
}
cmd_t cmd_dr = {

Loading…
Cancel
Save