Skip to content

Commit 98c0ce7

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

File tree

3 files changed

+589
-131
lines changed

3 files changed

+589
-131
lines changed

nrf71_wifi/include/nrf71_wifi_common.h

Lines changed: 19 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
/**
@@ -2056,6 +2071,8 @@ enum nrf_wifi_rf_test {
20562071
NRF_WIFI_RF_TEST_READ_REGS,
20572072
NRF_WIFI_RF_TEST_SET_MEM,
20582073
NRF_WIFI_RF_TEST_READ_MEM,
2074+
NRF_WIFI_SET_TEMP_VOLT_RECAL_PARAMS = 64,
2075+
NRF_WIFI_SET_CALIB_CTRL_PARAMS,
20592076
NRF_WIFI_RF_TEST_MAX,
20602077
};
20612078

@@ -2077,6 +2094,8 @@ enum nrf_wifi_rf_test_event {
20772094
NRF_WIFI_RF_TEST_EVENT_READ_REGS,
20782095
NRF_WIFI_RF_TEST_EVENT_SET_MEM,
20792096
NRF_WIFI_RF_TEST_EVENT_READ_MEM,
2097+
NRF_WIFI_EVENT_SET_TEMP_VOLT_RECAL_PARAMS = 64,
2098+
NRF_WIFI_EVENT_SET_CALIB_CTRL_PARAMS,
20802099
NRF_WIFI_RF_TEST_EVENT_MAX,
20812100
};
20822101

0 commit comments

Comments
 (0)