pld: small documentation fixes.
[openocd.git] / tcl / target / geehy / apm32f0x.cfg
blob502c092751e23a33b74f5f58db954723f179d541
1 # SPDX-License-Identifier: GPL-2.0-or-later
4 # Geehy APM32F0x target
6 # https://global.geehy.com/MCU
10 # APM32F0x devices support SWD transport only.
12 source [find target/swj-dp.tcl]
14 if { [info exists CHIPNAME] } {
15    set _CHIPNAME $CHIPNAME
16 } else {
17    set _CHIPNAME apm32f0x
20 # Work-area is a space in RAM used for flash programming, by default use 1 KiB.
21 if { [info exists WORKAREASIZE] } {
22    set _WORKAREASIZE $WORKAREASIZE
23 } else {
24    set _WORKAREASIZE 0x400
27 if { [info exists CPUTAPID] } {
28    set _CPUTAPID $CPUTAPID
29 } else {
30    set _CPUTAPID 0x0bc11477
33 swj_newdap $_CHIPNAME cpu -expected-id $_CPUTAPID
34 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
36 set _TARGETNAME $_CHIPNAME.cpu
37 target create $_TARGETNAME cortex_m -endian little -dap $_CHIPNAME.dap
39 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
41 set _FLASHNAME $_CHIPNAME.flash
42 flash bank $_FLASHNAME stm32f1x 0x08000000 0 0 0 $_TARGETNAME
44 adapter speed 1000
46 if {![using_hla]} {
47    # if srst is not fitted use SYSRESETREQ to perform a soft reset.
48    cortex_m reset_config sysresetreq