You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect the binary is 0b1000_0100_0000_0000 - padded with zeros to the end of the byte.
The Actual result is 0b1000_0000_0000_1000 - written byte adde as next but bit cursor still points to the position '1'.
The text was updated successfully, but these errors were encountered:
Hi @aserdobintsev,
to be honest I always wondered what the best result might look like — and never had a good answer.
In the end I thought:
Every time I write a bit, I should also fill up the other remaining 7 bits in order to get predictable results and be able to add other bytes.
Hi Devran, could you help me to understand, is it intended writing behaviour that divides writing with bits and bytes?
For example:
I would expect the binary is
0b1000_0100_0000_0000
- padded with zeros to the end of the byte.The Actual result is
0b1000_0000_0000_1000
- written byte adde as next but bit cursor still points to the position '1'.The text was updated successfully, but these errors were encountered: