X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fjtag%2Finterfaces.c;h=7e8748a0da65493d696a73fac41515900daa8ef0;hb=fa5b0833d5fd146e9ceb9a91b2e8e6364f3bf53a;hp=dbc69d074abc9b7c993210343f1da7cc41d920f5;hpb=f279e54347914ac319405c35aca338b34b2e6728;p=fw%2Fopenocd diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index dbc69d074..7e8748a0d 100644 --- a/src/jtag/interfaces.c +++ b/src/jtag/interfaces.c @@ -97,6 +97,12 @@ 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 +#if BUILD_STLINK == 1 +extern struct jtag_interface stlink_interface; +#endif #endif // standard drivers /** @@ -163,6 +169,12 @@ struct jtag_interface *jtag_interfaces[] = { #if BUILD_BUSPIRATE == 1 &buspirate_interface, #endif +#if BUILD_REMOTE_BITBANG == 1 + &remote_bitbang_interface, +#endif +#if BUILD_STLINK == 1 + &stlink_interface, +#endif #endif // standard drivers NULL, };