I connected openocd using telnet.
can anyone tell me the procedure to connect using GDB.
Thanx
I connected openocd using telnet.
can anyone tell me the procedure to connect using GDB.
Thanx
You should launch your cross-gdb with
./arm-xxx-gdb <elf_image>
to have the symbol table loaded.
After that you can connect with
target remote localhost:3333
Regards,
Dominic