2009/1/16 SimonQian <simonq...@simonqian.com>:
> I've finished parsing SVF file and added it to OpenOCD.
> telnet to OpenOCD, and run "svf filename.svf".
> With "-d3" option, more information about parsing the SVF file will be
> outputed.
>
> Below are commands correspond to a jtag operation:
> 1.TRST -- control TRST line
> call jtag_add_trst ... OK
> 2.STATE -- statemove or pathmove
> call jtag_add_pathmove if path is defined ... OK
>     eg: STATE DREXIT2 DRUPDATE DRSELECT IRSELECT IRCAPTURE IREXIT1 IRPAUSE;
> But, I can't find jtag_add_statemove ... CALL WHO?
>     eg: STATE DRPAUSE
> 3.RUNTEST -- runtest at stable state
> call jtag_add_runtest ... OK
> 4.SIR and SDR -- scan ir/dr
> call jtag_add_plain_ir_scan or jtag_add_plain_dr_scan ... OK
> 5.FREQUENCY -- set jtag_speed
> call command_run_linef(cmd_ctx, "jtag_khz %d", speed_khz);  ... OK
>
> My question is how to call statemove in command STATE?

Use:

jtag_add_pathmove

> Attachment is the log file showing how the SVF file is parsed.
>
> 2009-01-16
> ________________________________
> Best Regards, Simon Qian
>
> SimonQian(simonq...@simonqian.com) ---- www.SimonQian.com
> ________________________________



-- 
Øyvind Harboe
http://www.zylin.com/zy1000.html
ARM7 ARM9 XScale Cortex
JTAG debugger and flash programmer
_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to