]> git.sur5r.net Git - openocd/blobdiff - src/jtag/interfaces.c
jtag: drivers: add support for FT232R sync bitbang JTAG interfaces
[openocd] / src / jtag / interfaces.c
index 174c63a3cde2cee378feb69fa26929c9fd5a583f..ddeadb46638e5335dd8c4359eaaa4762ef9fe540 100644 (file)
@@ -60,6 +60,9 @@ extern struct jtag_interface usb_blaster_interface;
 #if BUILD_JTAG_VPI == 1
 extern struct jtag_interface jtag_vpi_interface;
 #endif
+#if BUILD_FT232R == 1
+extern struct jtag_interface ft232r_interface;
+#endif
 #if BUILD_AMTJTAGACCEL == 1
 extern struct jtag_interface amt_jtagaccel_interface;
 #endif
@@ -159,6 +162,9 @@ struct jtag_interface *jtag_interfaces[] = {
 #if BUILD_JTAG_VPI == 1
                &jtag_vpi_interface,
 #endif
+#if BUILD_FT232R == 1
+               &ft232r_interface,
+#endif
 #if BUILD_AMTJTAGACCEL == 1
                &amt_jtagaccel_interface,
 #endif