oocd_ft2xx.cfg 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #daemon configuration
  2. telnet_port 4444
  3. gdb_port 3333
  4. #interface
  5. interface ft2232
  6. ft2232_device_desc "Olimex OpenOCD JTAG A"
  7. ft2232_layout "olimex-jtag"
  8. ft2232_vid_pid 0x15BA 0x0003
  9. jtag_speed 0
  10. #use combined on interfaces or targets that can't set TRST/SRST separately
  11. reset_config trst_and_srst srst_pulls_trst
  12. #jtag scan chain
  13. #format L IRC IRCM IDCODE (Length, IR Capture, IR Capture Mask, IDCODE)
  14. jtag_device 4 0x1 0xf 0xe
  15. #target configuration
  16. daemon_startup reset
  17. #target <type> <startup mode>
  18. #target arm7tdmi <reset mode> <chainpos> <endianness> <variant>
  19. target arm7tdmi little run_and_halt 0 arm7tdmi
  20. run_and_halt_time 0 30
  21. working_area 0 0x2000C000 0x4000 nobackup
  22. #flash bank <driver> <base> <size> <chip_width> <bus_width>
  23. flash bank str7x 0x40000000 0x00040000 0 0 0 STR71x
  24. #flash bank cfi 0x60000000 0x00400000 2 2 0
  25. #Script used for FLASH programming
  26. #target_script 0 reset str71x_flashprogram.ocd
  27. # For more information about the configuration files, take a look at:
  28. # http://openfacts.berlios.de/index-en.phtml?title=Open+On-Chip+Debugger