Skip to content

Commit

Permalink
Additional changes to rebase with sprint branch as of 3rd Dec
Browse files Browse the repository at this point in the history
This commit has changes related to Transient Client Management
configuration and updation of country code.
  • Loading branch information
amarnathhullur committed Dec 13, 2024
1 parent ccd685b commit f1b02b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/wifi_hal_ap.h
Original file line number Diff line number Diff line change
Expand Up @@ -2833,6 +2833,10 @@ typedef struct
char minimum_advertised_mcs[32]; /**< Minimum advertised MCS. */
char sixGOpInfoMinRate[32]; /**< 6G operating information minimum rate. */
char client_deny_assoc_info[45]; /**< Client deny association information. */
int time_ms; /**< Time to wait for meeting minimum mgmt frames for TCM threshold calcultion */
int min_num_mgmt_frames; /**< Minimum number of mgmt frames required to compute the TCM threshold. */
char tcm_exp_weightage[32]; /**< Alpha/Exponential weight used in the Exponential Moving Average formula. */
char tcm_gradient_threshold[32]; /**< Threshold against which TCM Exponential Moving Average is computed. */
wifi_vap_name_t vap_name; /**< VAP name. */
} __attribute__((packed)) wifi_preassoc_control_t;

Expand Down
6 changes: 6 additions & 0 deletions include/wifi_hal_generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ extern "C"{
#define WIFI_HAL_UNSUPPORTED -3 /**< Wi-Fi HAL unsupported operation status code. */
#define WIFI_HAL_INVALID_ARGUMENTS -4 /**< Wi-Fi HAL invalid arguments status code. */
#define WIFI_HAL_INVALID_VALUE -5 /**< Wi-Fi HAL invalid value status code. */
#define WIFI_HAL_NOT_READY -6 /**< Wi-Fi HAL not ready status code. */

#ifndef RADIO_INDEX_1
#define RADIO_INDEX_1 1 /**< Radio index 1. */
Expand Down Expand Up @@ -746,6 +747,11 @@ typedef enum {
wifi_countrycode_ZA, /**< SOUTH AFRICA */
wifi_countrycode_ZM, /**< ZAMBIA */
wifi_countrycode_ZW, /**< ZIMBABWE */
wifi_countrycode_AX, /**< ALAND_ISLANDS */
wifi_countrycode_BL, /**< SAINT_BARTHELEMY */
wifi_countrycode_CW, /**< CURACAO */
wifi_countrycode_MF, /**< SAINT_MARTIN */
wifi_countrycode_SX, /**< SINT_MAARTEN */
wifi_countrycode_max /**< Max number of country code */
} wifi_countrycode_type_t;

Expand Down

0 comments on commit f1b02b5

Please sign in to comment.