Fix xap cli bcd output

This commit is contained in:
zvecr
2023-08-25 18:57:33 +01:00
parent e1ab97c7bf
commit 3c0280b668
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -17,7 +17,12 @@ from .routes import XAPRoutes, XAPRouteError
def _u32_to_bcd(val: bytes) -> str: # noqa: N802
"""Create BCD string
"""
return f'{val>>24}.{val>>16 & 0xFF}.{val & 0xFFFF}'
tmp = "{:08x}".format(val)
major = int(tmp[0:2])
minor = int(tmp[2:4])
patch = int(tmp[4:8])
return f'{major}.{minor}.{patch}'
def _gen_token() -> bytes: