Skip to content

Commit

Permalink
Merge branch 'wfadev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
kntseng committed Jun 2, 2022
2 parents 02941ac + fc54501 commit d64759c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion indigo_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ struct indigo_tlv indigo_tlv_list[] = {
{ TLV_P2P_DISABLED, "P2P_DISABLED" },
{ TLV_MANAGE_P2P, "MANAGE_P2P" },
{ TLV_AP_STA_COEXIST, "AP_STA_COEXIST" },
{ TLV_WPS_INDEPENDENT, "WPS_INDEPENDENT" },
{ TLV_WPS_INDEPENDENT, "WPS_INDEPENDENT" },
{ TLV_LOCAL_PWR_CONST, "LOCAL_PWR_CONST" },
{ TLV_SPECTRUM_MGMT_REQ, "SPECTRUM_MGMT_REQ" },
};

/* Find the type of the API stucture by the ID from the list */
Expand Down
2 changes: 2 additions & 0 deletions indigo_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ struct indigo_api {
#define TLV_MANAGE_P2P 0x00d6
#define TLV_AP_STA_COEXIST 0x00d7
#define TLV_WPS_INDEPENDENT 0x00d8
#define TLV_LOCAL_PWR_CONST 0x00d9
#define TLV_SPECTRUM_MGMT_REQ 0x00da

// class ResponseTLV
// List of TLV used in the QuickTrack API response and ACK messages from the DUT
Expand Down
2 changes: 2 additions & 0 deletions indigo_api_callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ struct tlv_to_config_name maps[] = {
{ TLV_IGNORE_BROADCAST_SSID, "ignore_broadcast_ssid", 0 },
{ TLV_MANAGE_P2P, "manage_p2p", 0 },
{ TLV_WPS_INDEPENDENT, "wps_independent", 0 },
{ TLV_LOCAL_PWR_CONST, "local_pwr_constraint", 0 },
{ TLV_SPECTRUM_MGMT_REQ, "spectrum_mgmt_required", 0 },

/* wpas, seperate? */
{ TLV_STA_SSID, "ssid", 1 },
Expand Down

0 comments on commit d64759c

Please sign in to comment.