You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
1.0 KiB

  1. #daemon configuration
  2. telnet_port 4444
  3. gdb_port 3333
  4. # tell gdb our flash memory map
  5. gdb_memory_map enable
  6. # enable flash programming
  7. gdb_flash_program enable
  8. #interface
  9. interface ft2232
  10. ft2232_device_desc "Turtelizer JTAG/RS232 Adapter A"
  11. ft2232_layout turtelizer2
  12. ft2232_vid_pid 0x0403 0xbdc8
  13. jtag_speed 0
  14. jtag_nsrst_delay 200
  15. jtag_ntrst_delay 200
  16. #use combined on interfaces or targets that can't set TRST/SRST separately
  17. reset_config srst_only srst_pulls_trst
  18. #jtag scan chain
  19. #format L IRC IRCM IDCODE (Length, IR Capture, IR Capture Mask, IDCODE)
  20. jtag_device 4 0x1 0xf 0xe
  21. #target configuration
  22. daemon_startup reset
  23. #target <type> <startup mode>
  24. #target arm7tdmi <reset mode> <chainpos> <endianness> <variant>
  25. target arm7tdmi little 0 arm7tdmi
  26. target_script 0 reset .\prj\at91r40008_reset.script
  27. working_area 0 0x3C000 0x4000 nobackup
  28. flash bank cfi 0x10000000 0x400000 2 2 0
  29. # For more information about the configuration files, take a look at:
  30. # http://openfacts.berlios.de/index-en.phtml?title=Open+On-Chip+Debugger