makefiles/openocd: add sysfs gpio debug adapter

Add support for sysfs gpio adapter.
This commit is contained in:
Jona Raemdonck 2019-03-13 17:26:02 +01:00 committed by Toon Stegen
parent 7d2cb71c51
commit 5fd90d08b8

View File

@ -0,0 +1,15 @@
# sysfs GPIO debug adapter
SWCLK_PIN ?= 21
SWDIO_PIN ?= 20
SRST_PIN ?= 16
OPENOCD_ADAPTER_INIT ?= \
-c 'interface sysfsgpio' \
-c 'transport select swd' \
-c 'sysfsgpio_swd_nums $(SWCLK_PIN) $(SWDIO_PIN)' \
-c 'sysfsgpio_srst_num $(SRST_PIN)' \
-c 'adapter_nsrst_delay 100' \
-c 'adapter_nsrst_assert_width 100'
export OPENOCD_ADAPTER_INIT