Hi All,
I compile openocd with wiggler configure, I modify openocd.cfg for ARM7 board as fllow:
///////openocd.cfg
#daemon configuration
telnet_port 4444
gdb_port 3333
#interface
interface parport
parport_port 0x378
parport_cable wiggler
jtag_speed 0
#use combined on interfaces or targets that can’t set TRST/SRST separately
reset_config trst_and_srst
jtag newtap -irlen 3 -ircapture 0x1 -irmask 0xf -expected-id 0x342001bb
jtag newtap -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id 0x117001bb
target arm7tdmi little run_and_halt 0 arm7tdmi-s_r4
run_and_halt_time 0 200
///end openocd.cfg
when I run openocd,the output shows it doesn’t work well. the log as follow:
///
Open On-Chip Debugger 0.4.0 (2010-11-16-15:24)
Licensed under GNU GPL v2
For bug reports, read
http://openocd.berlios.de/doc/doxygen/bugs.html
parport port = 0x378
Runtime error, file “openocd.cfg”, line 9:
invalid command name “jtag_speed”
Info : clock speed 500 kHz
Warn : There are no enabled taps. AUTO PROBING MIGHT NOT WORK!!
Warn : AUTO auto0.tap - use “jtag newtap auto0 tap -expected-id 0x342001bb …”
Warn : AUTO auto1.tap - use “jtag newtap auto1 tap -expected-id 0x117001bb …”
Warn : AUTO auto0.tap - use “… -irlen 3”
Warn : AUTO auto1.tap - use “… -irlen 4”
Warn : gdb services need one or more targets defined
///
If you had those issues before please give some suggestions.
best wishes