cmd: add missing usage vars
[fw/openocd] / src / jtag / interfaces.c
index 8d13a0860cc98b0ce69caac49c266574731910c6..7e8748a0da65493d696a73fac41515900daa8ef0 100644 (file)
@@ -88,12 +88,21 @@ extern struct jtag_interface vsllink_interface;
 #if BUILD_RLINK == 1
 extern struct jtag_interface rlink_interface;
 #endif
+#if BUILD_ULINK == 1
+extern struct jtag_interface ulink_interface;
+#endif
 #if BUILD_ARMJTAGEW == 1
 extern struct jtag_interface armjtagew_interface;
 #endif
 #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
 
 /**
@@ -151,12 +160,21 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_RLINK == 1
                &rlink_interface,
 #endif
+#if BUILD_ULINK == 1
+               &ulink_interface,
+#endif
 #if BUILD_ARMJTAGEW == 1
                &armjtagew_interface,
 #endif
 #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,
        };