1 /* 2 * Copyright (c) 2025 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /** 8 * @file hal_api.h 9 * 10 * @brief Header containing API declarations for the HAL Layer of the Wi-Fi driver 11 * in the radio test mode of operation. 12 */ 13 14 #ifndef __HAL_API_RT_H__ 15 #define __HAL_API_RT__H__ 16 17 #include "osal_api.h" 18 #include "common/rpu_if.h" 19 #include "bal_api.h" 20 #include "common/hal_structs_common.h" 21 #include "common/hal_mem.h" 22 #include "common/hal_reg.h" 23 #include "common/hal_fw_patch_loader.h" 24 #include "common/hal_api_common.h" 25 26 struct nrf_wifi_hal_dev_ctx *nrf_wifi_rt_hal_dev_add(struct nrf_wifi_hal_priv *hpriv, 27 void *mac_dev_ctx); 28 #endif /* __HAL_API_RT_H__ */ 29