/Zephyr-latest/subsys/net/l2/wifi/ |
D | wifi_utils.c | 33 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 …]
|
D | wifi_shell.c | 203 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 …]
|
D | wifi_mgmt.c | 117 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/ |
D | Kconfig | 48 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/ |
D | Kconfig.nrfwifi | 227 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/ |
D | wifi_mgmt_scan.c | 47 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()
|
D | wpa_supp_if.c | 1499 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/ |
D | stropts.c | 24 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/ |
D | is31fl3194.c | 265 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/ |
D | wifi_utils.h | 119 bool wifi_utils_validate_chan(uint8_t band,
|
D | wifi_mgmt.h | 437 uint8_t band; member 503 uint8_t band; member 533 uint8_t band; member 680 enum wifi_frequency_bands band; member
|
D | wifi.h | 233 const char *wifi_band_txt(enum wifi_frequency_bands band);
|
/Zephyr-latest/samples/net/wifi/apsta_mode/src/ |
D | main.c | 126 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/ |
D | supp_api.c | 245 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/ |
D | wifi_credentials_shell.c | 199 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/ |
D | Kconfig.cc1200 | 87 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/ |
D | main.c | 58 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/ |
D | dfd_srv.rst | 14 Currently, the Firmware Distribution Server supports out-of-band (OOB) retrieval of firmware
|
D | provisioning.rst | 87 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/ |
D | Kconfig.nxp | 80 dual-band-1x1-wi-fi-6-802-11ax-plus-bluetooth-5-4-plus-802-15-4-tri-
|
/Zephyr-latest/boards/shields/nrf7002eb/doc/ |
D | index.rst | 12 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/ |
D | index.rst | 12 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/ |
D | ibecc.rst | 15 not support the out-of-band ECC.
|
/Zephyr-latest/boards/raspberrypi/rpi_5/doc/ |
D | index.rst | 16 - Dual-band 802.11ac Wi-Fi®
|
/Zephyr-latest/boards/seeed/wio_terminal/doc/ |
D | index.rst | 7 wireless connectivity (2.4G/5G dual-band Wi-Fi and BLE 5.0), LCD display,
|