main.cpp: added build option to enable/disable libusb scan
This commit is contained in:
parent
9b4c1dc9a9
commit
aac19677ac
|
|
@ -29,7 +29,9 @@
|
||||||
#include "ice40.hpp"
|
#include "ice40.hpp"
|
||||||
#include "lattice.hpp"
|
#include "lattice.hpp"
|
||||||
#include "latticeSSPI.hpp"
|
#include "latticeSSPI.hpp"
|
||||||
|
#ifdef ENABLE_USB_SCAN
|
||||||
#include "libusb_ll.hpp"
|
#include "libusb_ll.hpp"
|
||||||
|
#endif
|
||||||
#include "jtag.hpp"
|
#include "jtag.hpp"
|
||||||
#include "part.hpp"
|
#include "part.hpp"
|
||||||
#include "spiFlash.hpp"
|
#include "spiFlash.hpp"
|
||||||
|
|
@ -1206,9 +1208,11 @@ void displaySupported(const struct arguments &args)
|
||||||
cout << endl;
|
cout << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_USB_SCAN
|
||||||
if (args.scan_usb) {
|
if (args.scan_usb) {
|
||||||
libusb_ll usb(0, 0, args.verbose);
|
libusb_ll usb(0, 0, args.verbose);
|
||||||
usb.scan();
|
usb.scan();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue