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  */
12 
13 #ifndef __HAL_API_OFF_RAW_TX_H__
14 #define __HAL_API_OFF_RAW_TX_H__
15 
16 #include "osal_api.h"
17 #include "common/rpu_if.h"
18 #include "bal_api.h"
19 #include "common/hal_structs_common.h"
20 #include "common/hal_mem.h"
21 #include "common/hal_reg.h"
22 #include "common/hal_fw_patch_loader.h"
23 #include "common/hal_api_common.h"
24 
25 struct nrf_wifi_hal_dev_ctx *nrf_wifi_off_raw_tx_hal_dev_add(struct nrf_wifi_hal_priv *hpriv,
26 							     void *mac_dev_ctx);
27 #endif /* __HAL_API_OFF_RAW_TX_H__ */
28