The new client can (lazily) read disks now, although nothing's actually done

with the result.
This commit is contained in:
David Given
2018-10-20 15:54:18 +02:00
parent 7efaae2f76
commit 7d765abb21
7 changed files with 154 additions and 31 deletions

View File

@@ -1,9 +1,12 @@
#ifndef USB_H
#define USB_H
class Fluxmap;
extern int usbGetVersion();
extern void usbSeek(uint8_t track);
extern void usbSeek(int track);
extern nanoseconds_t usbGetRotationalPeriod();
extern void usbTestBulkTransport();
extern std::unique_ptr<Fluxmap> usbRead(int side, int revolutions);
#endif