From 24e1e3dd2699b817fa72a7843d36197abcd9e3a3 Mon Sep 17 00:00:00 2001 From: Michal Demin Date: Mon, 8 Mar 2010 13:45:14 +0100 Subject: Add support for Bus Pirate as a JTAG adapter. This includes a driver and matching config file. This support needs to be enabled through the initial "configure" (use "--enable-buspirate"). Signed-off-by: Michal Demin Signed-off-by: David Brownell --- src/jtag/interfaces.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/jtag/interfaces.c') diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index f6d82195..8d13a086 100644 --- a/src/jtag/interfaces.c +++ b/src/jtag/interfaces.c @@ -91,6 +91,9 @@ extern struct jtag_interface rlink_interface; #if BUILD_ARMJTAGEW == 1 extern struct jtag_interface armjtagew_interface; #endif +#if BUILD_BUSPIRATE == 1 +extern struct jtag_interface buspirate_interface; +#endif #endif // standard drivers /** @@ -151,6 +154,9 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_ARMJTAGEW == 1 &armjtagew_interface, #endif +#if BUILD_BUSPIRATE == 1 + &buspirate_interface, +#endif #endif // standard drivers NULL, }; -- cgit v1.2.3