Fix, hopefully, the rest of the decoders.

This commit is contained in:
David Given
2022-02-12 15:02:42 +01:00
parent 0933dc1afa
commit e8d1c90182
9 changed files with 91 additions and 34 deletions

View File

@@ -50,6 +50,13 @@ public:
void resetFluxDecoder();
std::vector<bool> readRawBits(unsigned count);
uint8_t readRaw8();
uint16_t readRaw16();
uint32_t readRaw20();
uint32_t readRaw24();
uint32_t readRaw32();
uint64_t readRaw48();
uint64_t readRaw64();
Fluxmap::Position tell()
{ return _fmr->tell(); }