This is an automated email from Gerrit. Matthew Stephenson ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5988
-- gerrit commit 877111e3a56e8c71d70efa8f8c091315c0556bbf Author: Matthew Stephenson <[email protected]> Date: Sun Dec 27 10:35:14 2020 +0000 tcl/board: Add STM32G031J6 Discovery configuration Add configuration for STM32G031J6 Discovery board Change-Id: Ifca2ee1fbbb2804a571e1ee5c47048ff74d84431 Signed-off-by: Matthew Stephenson <[email protected]> diff --git a/tcl/board/stm32g0discovery.cfg b/tcl/board/stm32g0discovery.cfg new file mode 100644 index 0000000..7024bcd --- /dev/null +++ b/tcl/board/stm32g0discovery.cfg @@ -0,0 +1,16 @@ +# This is an STM32G031J6 discovery board with a single STM32G031J6 chip. +# https://www.st.com/en/evaluation-tools/stm32g0316-disco.html +# +# The reset_config is set to "none" because the pre-programmed +# demonstration configures the reset pin as GPIO during part of its +# operation, in which case "reset_config srst_only" won't work. + +source [find interface/stlink.cfg] + +transport select hla_swd + +set WORKAREASIZE 0x1000 +source [find target/stm32g0x.cfg] + +reset_config none +#reset_config srst_only -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
