forked from nrfconnect/nrf70-bm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnrf_wifi_radio_test_main.c
53 lines (42 loc) · 1.14 KB
/
nrf_wifi_radio_test_main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
#include <zephyr/kernel.h>
#include "radio_test/nrf70_bm_lib.h"
#include "nrf_wifi_radio_test_shell.h"
#define CHECK_RET(func) do { \
ret = func; \
if (ret) { \
printf("Error: %d\n", ret); \
goto cleanup; \
} \
} while (0)
bool debug_enabled;
#define debug_print(fmt, ...) \
do {if (debug_enabled) printf(fmt, ##__VA_ARGS__); } while (0)
int main(void)
{
int ret = 0;
struct nrf70_bm_regulatory_info reg_info = { 0 };
#ifndef CONFIG_ZEPHYR_SHELL
#error "This sample application requires shell support, please enable CONFIG_ZEPHYR_SHELL"
#endif
memcpy(reg_info.country_code, CONFIG_WIFI_RT_REG_DOMAIN, 2);
reg_info.force = true;
/* Initialize the Wi-Fi module */
CHECK_RET(nrf70_bm_rt_init(®_info));
printf("Initialized WiFi module, ready for radio test\n");
ret = nrf_wifi_radio_test_shell_init();
if (ret) {
printf("Failed to initialize radio test: %d\n", ret);
goto cleanup;
}
cleanup:
if (ret) {
nrf70_bm_rt_deinit();
printf("Exiting WiFi radio test sample application with error: %d\n", ret);
}
return ret;
}