summaryrefslogtreecommitdiff
path: root/openocd.cfg
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2012-08-07 16:54:36 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2012-08-07 16:54:36 +0200
commit09e89c867c8dc14adee298176a0a4c72d8f32245 (patch)
tree8d125de0b4a1c9d608ddae6ff927fc3624663bd0 /openocd.cfg
parent2fc77d271db27ecb140191c2dfafdba835962ffb (diff)
Split out reusable parts into the laks project.
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