Skip to content

Commit 4778f74

Browse files
committed
Integrate R2.2 latest changes
1 parent e5079d2 commit 4778f74

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Commands/afc_command_helper.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ def afc_operation(config: dict):
8686
elif type == 3:
8787
DutLogger.log(LogCategory.INFO, "Trigger DUT to send test frames for 160MHz bandwidth")
8888

89+
if QuickTrackRequestTLV.CONNECT_SP_AP in config:
90+
connect_sp_ap = config.get(QuickTrackRequestTLV.CONNECT_SP_AP)
91+
DutLogger.log(LogCategory.INFO, "Trigger AFC DUT to initiate connection procedure between AFC DUT and SP Access Point")
92+
8993
return "Successful", None
9094

9195
@staticmethod

Commands/shared_enums.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,10 @@ class QuickTrackRequestTLV(int, Enum):
371371
# @note TLV Length: Variable, Value: String
372372
AFC_CA_CERT = 0xB020
373373

374+
## @brief Trigger DUT to initiate connection procedure between AFC DUT and SP Access Point
375+
# @note TLV Length: 0x01, Value: 0(Reserved) or 1
376+
CONNECT_SP_AP = 0xB021
377+
374378
class QuickTrackResponseTLV(int, Enum):
375379
"""List of TLV used in the QuickTrack API response and ACK messages from the DUT"""
376380
MESSAGE = 0xa000

0 commit comments

Comments
 (0)