summaryrefslogtreecommitdiff
path: root/openocd.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'openocd.cfg')
-rw-r--r--openocd.cfg23
1 files changed, 0 insertions, 23 deletions
diff --git a/openocd.cfg b/openocd.cfg
deleted file mode 100644
index 1321413..0000000
--- a/openocd.cfg
+++ /dev/null
@@ -1,23 +0,0 @@
-telnet_port 4444
-gdb_port 3333
-
-interface ft2232
-
-ft2232_vid_pid 0x1457 0x5118
-ft2232_layout "jtagkey_prototype_v1"
-ft2232_device_desc "USB<=>JTAG&RS232"
-
-reset_config trst_and_srst
-
-source [find target/stm32f1x.cfg]
-
-proc flash_chip {} {
- halt
- stm32x mass_erase 0
- reset halt
- flash write_image suzumebachi.elf 0 elf
- reset
- shutdown
-}
-
-init