> $ gdb RTOSDemo.elf
> (gdb) load
> Loading section .text, size 0x3214 lma 0x0
> Loading section .rodata, size 0xe lma 0x3214
> Loading section .data, size 0x4 lma 0x3224
> Start address 0x0, load size 12838
> Remote connection closed
> (gdb)
>
> Then I tried various ways to make a reset (reset button, power cycle, 
> "reset run").
>
>  From telnet to openocd, I'm getting:
>
>  > reset run
> RCLK not supported
> jtag_khz: 16
>   
Your interface does not support RCLK nor the conversion from jtag_khz to 
jtag_speed (may be a bug in the code, jtag_khz is set to 16, jtag_speed 
to 0). Try defining the jtag_speed to something valid for your interface 
right after defining the interface in the configuration file.
In GDB, try using "monitor reset init" before trying to load the 
application. This will run the initialization script for your target, 
erasing the previous setting your peripherals might happen to have, 
making it more likely to have the application in memory (RAM or FLASH).

Regards,
Edgar


-- 
Edgar Grimberg
System Developer
Zylin AS
Phone: (+47) 51 63 25 00

_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to