qcacld-3.0: Add new ini to enable/disable R-STA 11az support

Add new ini "enable_responder_11az_support" to enable/disable
R-STA 11az support.

Change-Id: If99f19eb88a6db31364f010db0f257ece45e6527
CRs-Fixed: 3295310
This commit is contained in:
Pragaspathi Thilagaraj
2022-09-21 00:54:23 +05:30
committed by Madan Koyyalamudi
parent 97fefb1f62
commit b70d93c705
2 changed files with 28 additions and 1 deletions

View File

@@ -116,9 +116,33 @@
false, \
"enable Responder secure LTF support")
/*
* <ini>
* enable_responder_11az_support - R-STA 11az ranging support
* @Min: false
* @Max: true
* @Default: false
*
* This ini is used to enable R-STA advertising 11az ranging
* capabilities.
*
* Related: None
*
* Supported Feature: WIFI POS
*
* Usage: Internal/External
*
* </ini>
*/
#define CFG_RESPONDER_11AZ_SUPPORT CFG_INI_BOOL( \
"enable_responder_11az_support", \
false, \
"enable Responder 11az support")
#define CFG_WIFI_POS_ALL \
CFG(CFG_FINE_TIME_MEAS_CAPABILITY) \
CFG(CFG_OEM_SIXG_SUPPORT_DISABLE) \
CFG(CFG_RESPONDER_SECURE_LTF_SUPPORT)
CFG(CFG_RESPONDER_SECURE_LTF_SUPPORT) \
CFG(CFG_RESPONDER_11AZ_SUPPORT)
#endif /* __CFG_MLME_WIFI_POS_H */