diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-28 18:44:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-28 18:44:46 +0000 |
commit | 6b5ddb71fcb396ec826a283427b4771018d193e8 (patch) | |
tree | 89b2fdc761a8a39cc75db7b97a91f4088da6612e /testhal/STM32/GPT/openocd.cfg | |
parent | 381bddaf5af985848e36ed8abbd4321bbb442538 (diff) | |
download | ChibiOS-6b5ddb71fcb396ec826a283427b4771018d193e8.tar.gz ChibiOS-6b5ddb71fcb396ec826a283427b4771018d193e8.tar.bz2 ChibiOS-6b5ddb71fcb396ec826a283427b4771018d193e8.zip |
GPT driver model, STM32 GPT driver implementation, not tested, documentation not done yet.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2779 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/GPT/openocd.cfg')
-rw-r--r-- | testhal/STM32/GPT/openocd.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testhal/STM32/GPT/openocd.cfg b/testhal/STM32/GPT/openocd.cfg new file mode 100644 index 000000000..f40febe66 --- /dev/null +++ b/testhal/STM32/GPT/openocd.cfg @@ -0,0 +1,13 @@ +#daemon configuration
+telnet_port 4444
+gdb_port 3333
+
+# GDB can also flash my flash!
+gdb_memory_map enable
+gdb_flash_program enable
+gdb_breakpoint_override hard
+
+set WORKAREASIZE 0x5000
+
+source [find interface/olimex-arm-usb-ocd.cfg]
+source [find target/stm32.cfg]
|