STM32 ST-LINK target initial release

STM32 ST-LINK target  added.

Change-Id: Ibe2b7a3c0d5a8cf73d8680d6019adbdb62d68fa2
Signed-off-by: Mathias K <kesmtp@freenet.de>
Reviewed-on: http://openocd.zylin.com/279
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
Mathias K
2011-12-17 09:51:09 +01:00
committed by Spencer Oliver
parent 1d75eb25e0
commit 033d1053ae
3 changed files with 674 additions and 1 deletions

View File

@@ -34,7 +34,8 @@ libtarget_la_SOURCES = \
avrt.c \
dsp563xx.c \
dsp563xx_once.c \
dsp5680xx.c
dsp5680xx.c \
stm32_stlink.c
TARGET_CORE_SRC = \
algorithm.c \

670
src/target/stm32_stlink.c Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -84,6 +84,7 @@ extern struct target_type dsp563xx_target;
extern struct target_type dsp5680xx_target;
extern struct target_type testee_target;
extern struct target_type avr32_ap7k_target;
extern struct target_type stm32_stlink_target;
static struct target_type *target_types[] =
{
@@ -107,6 +108,7 @@ static struct target_type *target_types[] =
&dsp5680xx_target,
&testee_target,
&avr32_ap7k_target,
&stm32_stlink_target,
NULL,
};