Closed thomas-bc closed 9 months ago
Fix https://github.com/nasa/fprime/issues/1907
bytes(n) creates a zero'ed out bytes object of size N, which is not what we want here, and was the cause of the reported bug. hex(n) returns the string representation of N in hex, which is what we're looking for.
bytes(n)
hex(n)
Bugfix
Change Description
Fix https://github.com/nasa/fprime/issues/1907
bytes(n)
creates a zero'ed out bytes object of size N, which is not what we want here, and was the cause of the reported bug.hex(n)
returns the string representation of N in hex, which is what we're looking for.Rationale
Bugfix