1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /* @file
8  * @brief nRF Wi-Fi radio-test mode shell module
9  */
10 
11 #include <zephyr/kernel.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <zephyr/shell/shell.h>
15 #include <zephyr/init.h>
16 #include <ctype.h>
17 #include <host_rpu_sys_if.h>
18 #include <fmac_structs.h>
19 #include <queue.h>
20 
21 struct nrf_wifi_ctx_zep_rt {
22 	struct nrf_wifi_fmac_priv *fmac_priv;
23 	struct rpu_conf_params conf_params;
24 };
25