Store if an AP support 802.11mc during Wi-Fi measurement
This commit is contained in:
parent
ca03ea78fd
commit
42d148441c
1 changed files with 9 additions and 0 deletions
|
@ -34,6 +34,15 @@ class LocateRequestPeerSchema(BaseSchema):
|
|||
description="frequency in KHz",
|
||||
example=2472,
|
||||
)
|
||||
supports80211mc: Union[
|
||||
bool,
|
||||
Annotated[None, APIField(title="null", description="802.11mc support was not determined")]
|
||||
] = APIField(
|
||||
default=None,
|
||||
title="supports80211mc",
|
||||
description="access point supports 802.11mc",
|
||||
example=True
|
||||
)
|
||||
distance: Union[
|
||||
float,
|
||||
Annotated[None, APIField(title="null", description="distance was not measured")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue