Allow viewing the raw bitstream as bytes.

This commit is contained in:
David Given
2022-03-16 00:17:29 +01:00
parent 7d93692468
commit 9ea68b66f7
4 changed files with 56 additions and 4 deletions

View File

@@ -13,6 +13,10 @@ public:
std::vector<bool> readBits(unsigned count);
std::vector<bool> readBits(const Fluxmap::Position& until);
std::vector<bool> readBits()
{
return readBits(UINT_MAX);
}
private:
nanoseconds_t nextFlux();