Hello everybody,
I’m working with the DM355 evaluation board and my code is already finished. Now I would like to debug it using a graphical interface. I think that OLIMEX-JTAG+OPENOCD+ECLIPSE+TI’s tools could work.
At this step I’m trying to configure openOCD. Let me show you my config. script:
#daemon configuration
telnet_port 4444
gdb_port 3333
#interface
interface parport
parport_port 0x378
parport_cable wiggler
jtag_speed 10
#use combined on interfaces or targets that can’t set TRST/SRST separately
reset_config trst_and_srst
#jtag scan chain
#format L IRC IRCM IDCODE (Length, IR Capture, IR Capture Mask, IDCODE)
jtag_device 4 0x1 0xf 0x0e
jtag_device 4 0x1 0xf 0x0e
jtag_device 6 0x1 0x03C 0x0e
#target configuration
daemon_startup reset
#target
target arm926ejs little reset_halt 1 arm926ejs
working_area 0 0x200000 0x4000 backup
#run_and_halt_time 0 5000
#flash configuration
#flash bank <chip_width> <bus_width> [driver_options …]
flash bank cfi 0x10000000 0x800000 2 2 0
Do you have a good config script for this processor in ICE mode or ETB+ARM+ICE mode?
I apologize for my English but I do not use to use it.