cfg: fix typo in str730.cfg
[fw/openocd] / src / jtag / interfaces.c
index dbc69d074abc9b7c993210343f1da7cc41d920f5..7e8748a0da65493d696a73fac41515900daa8ef0 100644 (file)
@@ -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,
        };