jtag/drivers/jlink: Use correct command errors
[openocd.git] / tcl / board / tocoding_poplar.cfg
blob5f9dba43b01f48a15a69a411a554a939a494352b
1 # SPDX-License-Identifier: GPL-2.0-or-later
4 # board configuration for Tocoding Poplar
7 # board does not feature anything but JTAG
8 transport select jtag
10 adapter speed 10000
12 # SRST-only reset configuration
13 reset_config srst_only srst_push_pull
15 source [find target/hi3798.cfg]
17 # make sure the default target is the boot core
18 targets ${_TARGETNAME}0
20 proc core_up { args } {
21         global _TARGETNAME
23         # examine remaining cores
24         foreach _core $args {
25                 ${_TARGETNAME}$_core arp_examine
26         }