change range to be signed
This commit is contained in:
parent
b5eafda38f
commit
fde4e76f68
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class LocationPCBRev0Dot2BoardConfig(BoardConfig, board=BoardType.C3NAV_LOCATION
|
||||||
class RangeResultItem(StructType):
|
class RangeResultItem(StructType):
|
||||||
peer: str = field(metadata={"format": MacAddressFormat()})
|
peer: str = field(metadata={"format": MacAddressFormat()})
|
||||||
rssi: int = field(metadata={"format": SimpleFormat('b')})
|
rssi: int = field(metadata={"format": SimpleFormat('b')})
|
||||||
distance: int = field(metadata={"format": SimpleFormat('H')})
|
distance: int = field(metadata={"format": SimpleFormat('h')})
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue