aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/drivers/Makefile.am
diff options
context:
space:
mode:
authorZale Yu <cyyu@nuvoton.com>2020-04-29 16:53:52 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2020-08-02 10:47:02 +0100
commitb12fca236d191b0f280aaea0b63a5789480b5e05 (patch)
tree39a6adae8e054950c7a42752dd212372b2c3748b /src/jtag/drivers/Makefile.am
parent583a65644b5b69f5c197322b09a577b3c90ca781 (diff)
downloadriscv-openocd-b12fca236d191b0f280aaea0b63a5789480b5e05.zip
riscv-openocd-b12fca236d191b0f280aaea0b63a5789480b5e05.tar.gz
riscv-openocd-b12fca236d191b0f280aaea0b63a5789480b5e05.tar.bz2
jtag/drivers: add support for Nu-Link (Nuvoton ICE) over usb
Add support for Nu-Link1 over usb hidapi and config file. The original work is fetched from Nuvoton github. Code cleanup, fix merge conflicts, compile and runtime issues. Switch the code from libusb to hidapi, being the device HID based. Add documentation. Merge fixes for multi-word memory read. Reset is not fully compatible with openocd framework; currently the target is reset and then halt at openocd start. Change-Id: I9738de4e26783ba462ea3e39ec32069fd5bb7d94 Signed-off-by: Zale Yu <cyyu@nuvoton.com> Signed-off-by: Saravanan Sekar <saravanan@linumiz.com> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5635 Tested-by: jenkins Reviewed-by: Marc Schink <dev@zapb.de>
Diffstat (limited to 'src/jtag/drivers/Makefile.am')
-rw-r--r--src/jtag/drivers/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jtag/drivers/Makefile.am b/src/jtag/drivers/Makefile.am
index 77d6fb2..c860833 100644
--- a/src/jtag/drivers/Makefile.am
+++ b/src/jtag/drivers/Makefile.am
@@ -143,6 +143,9 @@ endif
if HLADAPTER_ICDI
DRIVERFILES += %D%/ti_icdi_usb.c
endif
+if HLADAPTER_NULINK
+DRIVERFILES += %D%/nulink_usb.c
+endif
if RSHIM
DRIVERFILES += %D%/rshim.c
endif