/Zephyr-latest/drivers/modem/ |
D | Kconfig.hl7800 | 79 bool "Band 1 (2000MHz)" 82 Enable Band 1 (2000MHz) 85 bool "Band 2 (1900MHz)" 88 Enable Band 2 (1900MHz) 91 bool "Band 3 (1800MHz)" 94 Enable Band 3 (1800MHz) 97 bool "Band 4 (1700MHz)" 100 Enable Band 4 (1700MHz) 103 bool "Band 5 (850MHz)" 106 Enable Band 5 (850MHz) [all …]
|
/Zephyr-latest/dts/bindings/wifi/ |
D | wifi-tx-power-5g.yaml | 6 i.e., maximum transmit power allowed for 5GHz band. Based on the 10 low sub-band: Channels 36-64 11 mid sub-band: Channels 96-132 12 high sub-band: Channels 136-177 20 description: Maximum transmit power allowed in 5GHz band MCS0 low sub-band 24 description: Maximum transmit power allowed in 5GHz band MCS7 low sub-band 28 description: Maximum transmit power allowed in 5GHz band MCS0 mid sub-band 32 description: Maximum transmit power allowed in 5GHz band MCS7 mid sub-band 36 description: Maximum transmit power allowed in 5GHz band MCS0 high sub-band 39 description: Maximum transmit power allowed in 5GHz band MCS7 high sub-band
|
D | wifi-tx-power-2g.yaml | 6 i.e., maximum transmit power allowed for 2.4GHz band. Based on the 15 description: Maximum transmit power allowed in 2.4GHz band for DSSS/CCK rates 19 description: Maximum transmit power allowed in 2.4GHz band for MCS0 23 description: Maximum transmit power allowed in 2.4GHz band for MCS7
|
/Zephyr-latest/include/zephyr/net/ |
D | wifi_utils.h | 31 /** Maximum length of the band specification string */ 38 * @brief Convert a band specification string to a bitmap representing the bands. 40 * @details The function will parse a string which specifies Wi-Fi frequency band 49 * for bit position of each band. 85 * - A colon identifies the value preceding it as a band. A band value 86 * (2: 2.4 GHz, 5: 5 GHz 6: 6 GHz) has to precede the channels in that band (e.g. 2: etc) 88 * - Commas are used to separate channel values within a band. Channels can be specified 90 * - Underscores (_) are used to specify multiple band-channel sets (e.g. 2:1,2_5:36,40 etc) 111 * @brief Validate a channel against a band. 113 * @param band Band to validate the channel against. [all …]
|
/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/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() 135 NET_ERR("Invalid channel value %d in band %d", chan_start, band_idx); in wifi_utils_get_all_chans_in_range() 140 NET_ERR("Invalid channel value %d in band %d", chan_end, band_idx); in wifi_utils_get_all_chans_in_range() [all …]
|
/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/edac/ |
D | Kconfig | 26 bool "In-Band ECC (IBECC)" 29 This option selects In-Band ECC (IBECC) IP support.
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | provisioning.rst | 44 Of Band information, such as the device's public key or an authentication 80 list of its capabilities, including the supported Out of Band Authentication 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 98 the public key for the Out of Band exchange, the provisioner may choose to 99 exchange the public key in-band if it can't retrieve the public key via OOB 117 After the initial exchange, the provisioner selects an Out of Band (OOB)
|
/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 96 LOG_ERR("%s: Unsupported band(s) (0x%X)", __func__, params->bands); in nrf_wifi_disp_scan_zep() 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() 189 LOG_ERR("%s: Unsupported band %d", __func__, 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()
|
/Zephyr-latest/doc/hardware/peripherals/edac/ |
D | ibecc.rst | 3 In Band Error Correction Code (IBECC) 12 The In-Band Error Correction Code (IBECC) improves reliability by providing 15 not support the out-of-band ECC.
|
/Zephyr-latest/drivers/wifi/infineon/ |
D | airoc_whd_hal_common.h | 30 /** Defines the priority of the interrupt that handles out-of-band notifications from the wifi 37 /** Defines whether to use the out-of-band pin to allow the WIFI chip to wake up the MCU. */
|
/Zephyr-latest/boards/silabs/radio_boards/slwrb4250b/ |
D | board.yml | 3 full_name: EFR32FG1 2400/868 MHz 13 dBm Dual Band (SLWRB4250B)
|
D | slwrb4250b.yaml | 2 name: EFR32FG 2400/868 MHz 13 dBm Dual Band Radio Board (SLWRB4250B, BRD4250B)
|
/Zephyr-latest/boards/silabs/radio_boards/slwrb4255a/ |
D | board.yml | 3 full_name: EFR32FG13 2400/915 MHz 19 dBm Dual Band (SLWRB4255A)
|
D | slwrb4255a.yaml | 2 name: EFR32FG13 2400/915 MHz 19 dBm Dual Band Radio Board (SLWRB4255A, BRD4255A)
|
/Zephyr-latest/boards/silabs/radio_boards/slwrb4170a/ |
D | board.yml | 3 full_name: EFR32MG12 2400/868-915 MHz 19 dBm Dual Band (SLWRB4170A)
|
D | slwrb4170a.yaml | 2 name: EFR32MG12 2400/868-915 MHz 19 dBm Dual Band Radio Board (SLWRB4170A, BRD4170A)
|
/Zephyr-latest/include/zephyr/lorawan/ |
D | lorawan.h | 86 LORAWAN_REGION_AS923, /**< Asia 923 MHz frequency band */ 87 LORAWAN_REGION_AU915, /**< Australia 915 MHz frequency band */ 88 LORAWAN_REGION_CN470, /**< China 470 MHz frequency band */ 89 LORAWAN_REGION_CN779, /**< China 779 MHz frequency band */ 90 LORAWAN_REGION_EU433, /**< Europe 433 MHz frequency band */ 91 LORAWAN_REGION_EU868, /**< Europe 868 MHz frequency band */ 92 LORAWAN_REGION_KR920, /**< South Korea 920 MHz frequency band */ 93 LORAWAN_REGION_IN865, /**< India 865 MHz frequency band */ 94 LORAWAN_REGION_US915, /**< United States 915 MHz frequency band */ 95 LORAWAN_REGION_RU864, /**< Russia 864 MHz frequency band */
|
/Zephyr-latest/soc/nxp/common/ |
D | Kconfig.nbu | 9 NXP Narrow Band Unit interrupt initialization.
|
/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/subsys/edac/ibecc/ |
D | README.rst | 14 :menuselection:`Intel Advanced Menu --> Memory Configuration --> In-Band ECC --> Enabled` 18 :menuselection:`Intel Advanced Menu --> Memory Configuration --> In-Band ECC Operation Mode --> 2` 33 :menuselection:`Intel Advanced Menu --> Memory Configuration --> In-Band ECC Error --> Enabled`
|
/Zephyr-latest/dts/bindings/edac/ |
D | intel,ibecc.yaml | 4 description: EDAC In-Band Error Correcting Code (IBECC)
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | ibi.h | 11 * @brief I3C In-Band Interrupts 12 * @defgroup i3c_ibi I3C In-Band Interrupts 130 * @brief Function called when In-Band Interrupt received from target device. 133 * receives an In-Band Interrupt from the target device.
|
/Zephyr-latest/dts/bindings/arm/ |
D | nxp,nbu.yaml | 16 description: Name of the Narrow Band Unit interruption initialization
|