File tree Expand file tree Collapse file tree 3 files changed +585
-131
lines changed Expand file tree Collapse file tree 3 files changed +585
-131
lines changed Original file line number Diff line number Diff line change @@ -931,6 +931,19 @@ struct temp_vbat_config {
931931#define TWT_EXTEND_SP_EDCA 0x1
932932#define DISABLE_DFS_CHANNELS 0x2
933933
934+ #define NRF_WIFI_FTM_INITIATOR_ENABLE (1 << 0)
935+ #define NRF_WIFI_FTM_RESPONDER_ENABLE (1 << 1)
936+ #define NRF_WIFI_LCI_ENABLE (1 << 2)
937+ #define NRF_WIFI_CIVILOC_ENABLE (1 << 3)
938+ #define NRF_WIFI_GAS_ENABLE (1 << 4)
939+
940+ struct nrf_wifi_ftm_loc_params {
941+ /** Enable = 1, Disable=0 */
942+ unsigned char ftm_enable ;
943+ /** Capabilities NRF_WIFI_FTM_INITIATOR_ENABLE & etc*/
944+ unsigned char capabilities ;
945+ };
946+
934947/**
935948 * @brief This structure defines the command responsible for initializing the UMAC.
936949 * After the host driver brings up, the host sends NRF_WIFI_CMD_INIT to the RPU.
@@ -1016,6 +1029,8 @@ struct nrf_wifi_cmd_sys_init {
10161029 * in the case of coexistence with Short Range radio.
10171030 */
10181031 unsigned int inband_scan_type ;
1032+ /** @ref nrf_wifi_ftm_loc_params */
1033+ struct nrf_wifi_ftm_loc_params ftm_loc_params ;
10191034} __NRF_WIFI_PKD ;
10201035
10211036/**
You can’t perform that action at this time.
0 commit comments