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
Hi. I'm comparing your implementation against a captured bitstream and finding a discrepancy with your documentation.
According to this doc, the command is doubled with its logical inverse (bit flipped version), where you have it as simply reversed: 0x32 -> 0x3223. It should be 0x32cd. Your example encode is correct because the logical inverse of 0x78 is 0x87.
Actually, I just checked the code and it is implemented correctly! So it just the explanation that needs to be updated.
The text was updated successfully, but these errors were encountered:
Hi. I'm comparing your implementation against a captured bitstream and finding a discrepancy with your documentation.
According to this doc, the command is doubled with its logical inverse (bit flipped version), where you have it as simply reversed: 0x32 -> 0x3223. It should be 0x32cd. Your example encode is correct because the logical inverse of 0x78 is 0x87.
Actually, I just checked the code and it is implemented correctly! So it just the explanation that needs to be updated.
The text was updated successfully, but these errors were encountered: