Can't telnet to openocd-ftd2xx

Still in the process of trying to setup GCC Yagarto, eclipes, openocd etc using Olimex ARM-USB-TINY and Olimex SAM7-p256 board. (AT91SAM7S256 chip).

After problem with driver inf files using the VID for the older Olimex (non-tiny) device, solved that, new VID=0x0004.

Using openocd-r717 release.

Have eclipse setup to use GCC and was able to modify the blink sample from Atmel and download via USB and SAM-BA v2.8. Now trying to get GDB to work, as first stage am trying to run openocd-ftd2xx.exe direct from the command line.

After getting some clues what to change in config file for this from another thread, I have it running (shows up in taskmanager), but I cannot telnet to it.

I’m running on Windows XP and try using the windows telnet host 127.0.0.1:4444 (4444 is the port specified in config file, and the debug display from openocd-ftd2xx shows this is indeed set.

Problem now is Windows telnet cannot connect.

OK, got telnet to connect, using the computere “hostname” rather than the loopback IP address. Now on to GDB

telnet on win32 does not like the address 127.0.0.1:4444

try as you have used

telnet localhost 4444

or

telnet 127.0.0.1 4444

Cheers

Spen