Skip to content

Commit de77e57

Browse files
author
Ajay Parida
committed
Firmware hdr file update
In sync with commit #ae4610cda4de9b7c87488efe5d674285a5e67e98 Signed-off-by: Ajay Parida <[email protected]>
1 parent 4e47baf commit de77e57

File tree

3 files changed

+585
-131
lines changed

3 files changed

+585
-131
lines changed

nrf71_wifi/include/nrf71_wifi_common.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)