X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fjtag%2Finterfaces.c;h=76a4e8d103eca81067adcfc5ee33c57a1b5c5983;hp=dbc69d074abc9b7c993210343f1da7cc41d920f5;hb=1411ad11c182d02769bb0954f7f5b01d66652a6b;hpb=48e8d2d21c2f7c19a7d6616115f06fef99203d7e diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index dbc69d074a..76a4e8d103 100644 --- a/src/jtag/interfaces.c +++ b/src/jtag/interfaces.c @@ -97,6 +97,9 @@ extern struct jtag_interface armjtagew_interface; #if BUILD_BUSPIRATE == 1 extern struct jtag_interface buspirate_interface; #endif +#if BUILD_REMOTE_BITBANG == 1 +extern struct jtag_interface remote_bitbang_interface; +#endif #endif // standard drivers /** @@ -163,6 +166,9 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_BUSPIRATE == 1 &buspirate_interface, #endif +#if BUILD_REMOTE_BITBANG == 1 + &remote_bitbang_interface, +#endif #endif // standard drivers NULL, };