nRF Connect SDK API 0.1.0
Loading...
Searching...
No Matches
wifi_location_common.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef WIFI_LOCATION_COMMON_H_
8#define WIFI_LOCATION_COMMON_H_
9
12#include <zephyr/net/wifi_mgmt.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
24#define WIFI_MAC_ADDR_STR_LEN ((WIFI_MAC_ADDR_LEN * 2) + 5)
26#define WIFI_MAC_ADDR_TEMPLATE "%02x:%02x:%02x:%02x:%02x:%02x"
27
31 struct wifi_scan_result *ap_info;
33 uint16_t cnt;
34};
35
38#ifdef __cplusplus
39}
40#endif
41
42#endif /* WIFI_LOCATION_COMMON_H_ */
struct wifi_scan_result * ap_info
Definition: wifi_location_common.h:31
uint16_t cnt
Definition: wifi_location_common.h:33
Access points found during a Wi-Fi scan.
Definition: wifi_location_common.h:29