This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/331
-- gerrit commit 2d8615b4431859a0b96eb7879e7956b43ce27a75 Author: Spencer Oliver <[email protected]> Date: Tue Jan 3 21:42:49 2012 +0000 cfg: use consistent chipname Change-Id: I41e0788f830d5ece13e6231a99d5b4013c9c678f Signed-off-by: Spencer Oliver <[email protected]> diff --git a/tcl/target/stm32f1x.cfg b/tcl/target/stm32f1x.cfg index 2390f28..a686e51 100644 --- a/tcl/target/stm32f1x.cfg +++ b/tcl/target/stm32f1x.cfg @@ -1,9 +1,9 @@ -# script for stm32 +# script for stm32f1x family if { [info exists CHIPNAME] } { set _CHIPNAME $CHIPNAME } else { - set _CHIPNAME stm32 + set _CHIPNAME stm32f1x } if { [info exists ENDIAN] } { diff --git a/tcl/target/stm32f2x.cfg b/tcl/target/stm32f2x.cfg index 49b53d7..ae63751 100644 --- a/tcl/target/stm32f2x.cfg +++ b/tcl/target/stm32f2x.cfg @@ -1,9 +1,9 @@ -# script for stm32f2xxx +# script for stm32f2x family if { [info exists CHIPNAME] } { set _CHIPNAME $CHIPNAME } else { - set _CHIPNAME stm32f2xxx + set _CHIPNAME stm32f2x } if { [info exists ENDIAN] } { -- ------------------------------------------------------------------------------ Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to sell to consumers worldwide. Explore the Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join http://p.sf.net/sfu/intel-appdev _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
