wlan: Add a new parameter for the new FlexConnect feature

Add a new parameter (flexConnectPowerFactor) which is exposed to the
cfg.ini file (gflexConnectPowerFactor) to adjust how aggressive it enters
power collapse for the new FlexConnect feature.

Change-Id: I687925710411ab94f150c44fefe870fd700f57bc
CRs-fixed: 514125
diff --git a/CORE/MAC/inc/wniCfgSta.h b/CORE/MAC/inc/wniCfgSta.h
index b769b39..6337928 100644
--- a/CORE/MAC/inc/wniCfgSta.h
+++ b/CORE/MAC/inc/wniCfgSta.h
@@ -355,6 +355,7 @@
 #define WNI_CFG_TDLS_RX_FRAME_THRESHOLD    301
 #define WNI_CFG_ENABLE_ADAPT_RX_DRAIN    302
 #define WNI_CFG_OXYGEN_NETWORK_DATA    303
+#define WNI_CFG_FLEX_CONNECT_POWER_FACTOR    304
 
 /*
  * String parameter lengths 
@@ -1640,8 +1641,12 @@
 #define WNI_CFG_OXYGEN_NETWORK_DATA_STAMAX    8192
 #define WNI_CFG_OXYGEN_NETWORK_DATA_STADEF    8192
 
-#define CFG_PARAM_MAX_NUM        304
-#define CFG_STA_IBUF_MAX_SIZE    238
+#define WNI_CFG_FLEX_CONNECT_POWER_FACTOR_STAMIN    0
+#define WNI_CFG_FLEX_CONNECT_POWER_FACTOR_STAMAX    9
+#define WNI_CFG_FLEX_CONNECT_POWER_FACTOR_STADEF    0
+
+#define CFG_PARAM_MAX_NUM        305
+#define CFG_STA_IBUF_MAX_SIZE    239
 #define CFG_STA_SBUF_MAX_SIZE    3388
 #define CFG_SEM_MAX_NUM          19