Remove the cruncher.

This commit is contained in:
David Given
2020-03-20 00:06:07 +01:00
parent 3d0f019fc4
commit 1b48ea20c4
13 changed files with 344 additions and 702 deletions

View File

@@ -50,9 +50,9 @@ public:
{
usbSetDrive(_drive, high_density, indexMode);
usbSeek(track);
Bytes crunched = usbRead(side, synced, revolutions * _oneRevolution);
Bytes data = usbRead(side, synced, revolutions * _oneRevolution);
auto fluxmap = std::make_unique<Fluxmap>();
fluxmap->appendBytes(crunched.uncrunch());
fluxmap->appendBytes(data);
return fluxmap;
}