Home
last modified time | relevance | path

Searched refs:band (Results 1 – 25 of 42) sorted by relevance

12

/Zephyr-latest/subsys/net/l2/wifi/
Dwifi_utils.c33 enum wifi_frequency_bands band = WIFI_FREQ_BAND_UNKNOWN; in wifi_utils_map_band_str_to_idx() local
36 band = WIFI_FREQ_BAND_2_4_GHZ; in wifi_utils_map_band_str_to_idx()
38 band = WIFI_FREQ_BAND_5_GHZ; in wifi_utils_map_band_str_to_idx()
40 band = WIFI_FREQ_BAND_6_GHZ; in wifi_utils_map_band_str_to_idx()
43 return band; in wifi_utils_map_band_str_to_idx()
82 bool wifi_utils_validate_chan(uint8_t band, in wifi_utils_validate_chan() argument
87 switch (band) { in wifi_utils_validate_chan()
98 NET_ERR("Unknown band: %d", band); in wifi_utils_validate_chan()
156 band_chan[idx].band = band_idx; in wifi_utils_get_all_chans_in_range()
178 band_chan[idx].band = band_idx; in wifi_utils_get_all_chans_in_range()
[all …]
Dwifi_shell.c203 wifi_band_txt(entry->band), in handle_wifi_scan_result()
237 enum wifi_frequency_bands band = WIFI_FREQ_BAND_2_4_GHZ; in wifi_freq_to_band() local
240 band = WIFI_FREQ_BAND_2_4_GHZ; in wifi_freq_to_band()
242 band = WIFI_FREQ_BAND_5_GHZ; in wifi_freq_to_band()
244 band = WIFI_FREQ_BAND_6_GHZ; in wifi_freq_to_band()
247 return band; in wifi_freq_to_band()
255 int band; in handle_wifi_raw_scan_result() local
269 band = wifi_freq_to_band(raw->frequency); in handle_wifi_raw_scan_result()
274 wifi_band_txt(band), in handle_wifi_raw_scan_result()
609 uint8_t band; in __wifi_args_to_params() local
[all …]
Dwifi_mgmt.c117 const char *wifi_band_txt(enum wifi_frequency_bands band) in wifi_band_txt() argument
119 switch (band) { in wifi_band_txt()
522 params.band_chan[i].band = WIFI_FREQ_BAND_5_GHZ; in wifi_neighbor_rep_complete()
524 params.band_chan[i].band = WIFI_FREQ_BAND_2_4_GHZ; in wifi_neighbor_rep_complete()
1372 params->band = WIFI_FREQ_BAND_2_4_GHZ; in __stored_creds_to_params()
1374 params->band = WIFI_FREQ_BAND_5_GHZ; in __stored_creds_to_params()
1376 params->band = WIFI_FREQ_BAND_UNKNOWN; in __stored_creds_to_params()
/Zephyr-latest/subsys/lorawan/
DKconfig48 bool "Asia 923MHz Frequency band"
51 bool "Australia 915MHz Frequency band"
54 bool "China 470MHz Frequency band"
57 bool "China 779MHz Frequency band"
60 bool "Europe 433MHz Frequency band"
63 bool "Europe 868MHz Frequency band"
66 bool "South Korea 920MHz Frequency band"
69 bool "India 865MHz Frequency band"
72 bool "North America 915MHz Frequency band"
75 bool "Russia 864MHz Frequency band"
/Zephyr-latest/drivers/wifi/nrf_wifi/
DKconfig.nrfwifi227 int "PCB loss for 2.4 GHz band"
236 int "PCB loss for 5 GHz band (5150 MHz - 5350 MHz, Channel-32 - Channel-68)"
245 int "PCB loss for 5 GHz band (5470 MHz - 5730 MHz, Channel-96 - Channel-144)"
254 int "PCB loss for 5 GHz band (5730 MHz - 5895 MHz, Channel-149 - Channel-177)"
263 int "Antenna gain for 2.4 GHz band"
268 int "Antenna gain for 5 GHz band (5150 MHz - 5350 MHz)"
273 int "Antenna gain for 5 GHz band (5470 MHz - 5730 MHz)"
278 int "Antenna gain for 5 GHz band (5730 MHz - 5895 MHz)"
283 int "DSSS Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
288 int "HT/VHT Transmit power backoff (in dB) for lower edge of 2.4 GHz frequency band"
[all …]
/Zephyr-latest/drivers/wifi/nrf_wifi/src/
Dwifi_mgmt_scan.c47 enum nrf_wifi_band band = NRF_WIFI_BAND_INVALID; in nrf_wifi_disp_scan_zep() local
186 band = nrf_wifi_map_zep_band_to_rpu(params->band_chan[i].band); in nrf_wifi_disp_scan_zep()
188 if (band == NRF_WIFI_BAND_INVALID) { in nrf_wifi_disp_scan_zep()
190 params->band_chan[i].band); in nrf_wifi_disp_scan_zep()
195 band, params->band_chan[i].channel); in nrf_wifi_disp_scan_zep()
342 res.band = r->nwk_band; in nrf_wifi_event_proc_disp_scan_res_zep()
Dwpa_supp_if.c1499 struct wpa_supp_event_supported_band *band in nrf_wifi_parse_sband() argument
1507 memset(band, 0, sizeof(*band)); in nrf_wifi_parse_sband()
1509 band->wpa_supp_n_channels = event->nrf_wifi_n_channels; in nrf_wifi_parse_sband()
1510 band->wpa_supp_n_bitrates = event->nrf_wifi_n_bitrates; in nrf_wifi_parse_sband()
1512 for (count = 0; count < band->wpa_supp_n_channels; count++) { in nrf_wifi_parse_sband()
1513 struct wpa_supp_event_channel *chan = &band->channels[count]; in nrf_wifi_parse_sband()
1529 for (count = 0; count < band->wpa_supp_n_bitrates; count++) { in nrf_wifi_parse_sband()
1530 struct wpa_supp_event_rate *rate = &band->bitrates[count]; in nrf_wifi_parse_sband()
1541 band->ht_cap.wpa_supp_ht_supported = event->ht_cap.nrf_wifi_ht_supported; in nrf_wifi_parse_sband()
1542 band->ht_cap.wpa_supp_cap = event->ht_cap.nrf_wifi_cap; in nrf_wifi_parse_sband()
[all …]
/Zephyr-latest/lib/posix/options/
Dstropts.c24 int putpmsg(int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr, int band, in putpmsg() argument
30 ARG_UNUSED(band); in putpmsg()
/Zephyr-latest/drivers/led/
Dis31fl3194.c265 uint8_t prod_id, band; in is31fl3194_init() local
294 band = (config->current_limits[0] / 10) - 1; in is31fl3194_init()
296 current_reg |= band << (2 * i); in is31fl3194_init()
301 band = (config->current_limits[i] / 10) - 1; in is31fl3194_init()
302 current_reg |= band << (2 * i); in is31fl3194_init()
/Zephyr-latest/include/zephyr/net/
Dwifi_utils.h119 bool wifi_utils_validate_chan(uint8_t band,
Dwifi_mgmt.h437 uint8_t band; member
503 uint8_t band; member
533 uint8_t band; member
680 enum wifi_frequency_bands band; member
Dwifi.h233 const char *wifi_band_txt(enum wifi_frequency_bands band);
/Zephyr-latest/samples/net/wifi/apsta_mode/src/
Dmain.c126 ap_config.band = WIFI_FREQ_BAND_2_4_GHZ; in enable_ap_mode()
159 sta_config.band = WIFI_FREQ_BAND_2_4_GHZ; in connect_to_wifi()
/Zephyr-latest/modules/hostap/src/
Dsupp_api.c245 static struct hostapd_hw_modes *get_mode_by_band(struct wpa_supplicant *wpa_s, uint8_t band) in get_mode_by_band() argument
248 bool is_6ghz = (band == WIFI_FREQ_BAND_6_GHZ) ? true : false; in get_mode_by_band()
250 if (band == WIFI_FREQ_BAND_2_4_GHZ) { in get_mode_by_band()
252 } else if ((band == WIFI_FREQ_BAND_5_GHZ) || in get_mode_by_band()
253 (band == WIFI_FREQ_BAND_6_GHZ)) { in get_mode_by_band()
262 static int wpa_supp_supported_channels(struct wpa_supplicant *wpa_s, uint8_t band, char **chan_list) in wpa_supp_supported_channels() argument
270 mode = get_mode_by_band(wpa_s, band); in wpa_supp_supported_channels()
272 wpa_printf(MSG_ERROR, "Unsupported or invalid band: %d", band); in wpa_supp_supported_channels()
295 static int wpa_supp_band_chan_compat(struct wpa_supplicant *wpa_s, uint8_t band, uint8_t channel) in wpa_supp_band_chan_compat() argument
300 mode = get_mode_by_band(wpa_s, band); in wpa_supp_band_chan_compat()
[all …]
/Zephyr-latest/subsys/net/lib/wifi_credentials/
Dwifi_credentials_shell.c199 enum wifi_frequency_bands band = parse_band(argv[arg_idx]); in cmd_add_network() local
201 if (band == WIFI_FREQ_BAND_2_4_GHZ) { in cmd_add_network()
205 if (band == WIFI_FREQ_BAND_5_GHZ) { in cmd_add_network()
/Zephyr-latest/drivers/ieee802154/
DKconfig.cc120087 bool "IEEE 802.15.4g SUN MR-FSK, 863MHz band, mode #1 - channel page 9, 34 channels, 50Kbps (ETSI)"
93 bool "IEEE 802.15.4g SUN MR-FSK 920MHz band, mode #1 - channel page 9, 39 channels, 50Kbps (ARIB)"
99 bool "IEEE 802.15.4 Non-Standard 2-GFSK 433MHz band - channel page 9, 15 channels, 50Kbps (ETSI)"
/Zephyr-latest/tests/boards/espressif/wifi/src/
Dmain.c58 wifi_band_txt(entry->band), entry->rssi, wifi_security_txt(entry->security), in wifi_scan_result()
170 params.band = WIFI_FREQ_BAND_UNKNOWN; in wifi_connect()
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Ddfd_srv.rst14 Currently, the Firmware Distribution Server supports out-of-band (OOB) retrieval of firmware
Dprovisioning.rst87 device exchange public keys, either in-band or Out of Band (OOB).
89 In-band public key exchange is a part of the provisioning process and always
99 exchange the public key in-band if it can't retrieve the public key via OOB
/Zephyr-latest/drivers/bluetooth/hci/
DKconfig.nxp80 dual-band-1x1-wi-fi-6-802-11ax-plus-bluetooth-5-4-plus-802-15-4-tri-
/Zephyr-latest/boards/shields/nrf7002eb/doc/
Dindex.rst12 The nRF7002 EB unlocks low-power Wi-Fi 6 capabilities for your host device. It support dual-band Wi…
/Zephyr-latest/boards/shields/nrf7002ek/doc/
Dindex.rst12 The nRF7002 EK unlocks low-power Wi-Fi 6 capabilities for your host device. It support dual-band Wi…
/Zephyr-latest/doc/hardware/peripherals/edac/
Dibecc.rst15 not support the out-of-band ECC.
/Zephyr-latest/boards/raspberrypi/rpi_5/doc/
Dindex.rst16 - Dual-band 802.11ac Wi-Fi®
/Zephyr-latest/boards/seeed/wio_terminal/doc/
Dindex.rst7 wireless connectivity (2.4G/5G dual-band Wi-Fi and BLE 5.0), LCD display,

12