From: <ge...@op...> - 2016-02-25 13:58:16
|
This is an automated email from Gerrit. Uwe Bonnes (bo...@el...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/3361 -- gerrit commit d8d22200404fff322e8ef8d88d6a378540c08fd8 Author: Uwe Bonnes <bo...@el...> Date: Thu Feb 25 14:30:31 2016 +0100 Add configuration for ST Nucleo boards with STM32L0X. Change-Id: I63a92da23ec36310016f4e9378de53f64c9565a1 Signed-off-by: Uwe Bonnes <bo...@el...> diff --git a/tcl/board/st_nucleo_l0.cfg b/tcl/board/st_nucleo_l0.cfg new file mode 100644 index 0000000..483a650 --- /dev/null +++ b/tcl/board/st_nucleo_l0.cfg @@ -0,0 +1,19 @@ +# This is for all ST NUCLEO with any STM32L0. Known boards at the moment: +# STM32L011K4 +# http://www.st.com/web/catalog/tools/FM116/CL1620/SC959/SS1532/LN1847/PF262595 +# STM32L031K6 +# http://www.st.com/web/catalog/tools/FM116/CL1620/SC959/SS1532/LN1847/PF262547 +# STM32L053R8 +# http://www.st.com/web/catalog/tools/FM116/CL1620/SC959/SS1532/LN1847/PF260001 +# STM32L073RZ +# http://www.st.com/web/catalog/tools/FM116/CL1620/SC959/SS1532/LN1847/PF261637 + +source [find interface/stlink-v2-1.cfg] + +transport select hla_swd + +# STM32L011K4 has only 2 kByte of Ram +set WORKAREASIZE 0x0800 +source [find target/stm32l0.cfg] + +reset_config srst_only -- |