|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -119,13 +119,22 @@
|
|
|
/*
|
|
|
* <ini>
|
|
|
* enable_responder_11az_support - R-STA 11az ranging support
|
|
|
- * @Min: false
|
|
|
- * @Max: true
|
|
|
- * @Default: false
|
|
|
+ * @Min: 0
|
|
|
+ * @Max: 3
|
|
|
+ * @Default: 0
|
|
|
*
|
|
|
- * This ini is used to enable R-STA advertising 11az ranging
|
|
|
+ * This ini is used to enable TB and NTB of R-STA advertising 11az ranging
|
|
|
* capabilities.
|
|
|
*
|
|
|
+ * +-----------+----------+-------+
|
|
|
+ * | Value | TB | NTB |
|
|
|
+ * +-----------+----------+-------+
|
|
|
+ * | 0x0 | 0 | 0 |
|
|
|
+ * | 0x1 | 0 | 1 |
|
|
|
+ * | 0x2 | 1 | 0 |
|
|
|
+ * | 0x3 | 1 | 1 |
|
|
|
+ * +-----------+----------+-------+
|
|
|
+ *
|
|
|
* Related: None
|
|
|
*
|
|
|
* Supported Feature: WIFI POS
|
|
@@ -134,9 +143,12 @@
|
|
|
*
|
|
|
* </ini>
|
|
|
*/
|
|
|
-#define CFG_RESPONDER_11AZ_SUPPORT CFG_INI_BOOL( \
|
|
|
+#define CFG_RESPONDER_11AZ_SUPPORT CFG_INI_UINT( \
|
|
|
"enable_responder_11az_support", \
|
|
|
- false, \
|
|
|
+ 0, \
|
|
|
+ 3, \
|
|
|
+ 0, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, \
|
|
|
"enable Responder 11az support")
|
|
|
|
|
|
#define CFG_WIFI_POS_ALL \
|