This is an automated email from Gerrit. Andreas Färber ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2471
-- gerrit commit 37a6ffd7af247c1181455c3b072325e439baf570 Author: Andreas Färber <[email protected]> Date: Sun Jan 18 01:02:48 2015 +0100 tcl/target: Add Infineon XMC1000 family target config Basic target config, verified against XMC1100 AA/AB, XMC1200 AA/AB, XMC1300 AA/AB manuals. Change-Id: Iff6ed52d875ccb83c0d4ff0d555b90e0f28b860c Signed-off-by: Andreas Färber <[email protected]> diff --git a/tcl/target/xmc1xxx.cfg b/tcl/target/xmc1xxx.cfg new file mode 100644 index 0000000..dee3fab --- /dev/null +++ b/tcl/target/xmc1xxx.cfg @@ -0,0 +1,26 @@ +# +# Infineon XMC1100/XMC1200/XMC1300 family (ARM Cortex-M0 @ 32 MHz) +# + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME xmc1000 +} + +if { [info exists CPU_TAPID] } { + set _CPU_TAPID $CPU_TAPID +} else { + set _CPU_TAPID 0x0BB11477 +} + +# +# Only SWD and SPD supported +# +transport select swd + +swd newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPU_TAPID + +set _ENDIAN little +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME -- ------------------------------------------------------------------------------ New Year. New Location. New Benefits. New Data Center in Ashburn, VA. GigeNET is offering a free month of service with a new server in Ashburn. Choose from 2 high performing configs, both with 100TB of bandwidth. Higher redundancy.Lower latency.Increased capacity.Completely compliant. http://p.sf.net/sfu/gigenet _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
