Searched full:interface (Results 1 – 25 of 1694) sorted by relevance
12345678910>>...68
/Zephyr-Core-3.5.0/modules/hal_nordic/nrf_802154/ |
D | CMakeLists.txt | 5 zephyr_interface_library_named(zephyr-802154-interface) 16 target_compile_definitions(zephyr-802154-interface 17 INTERFACE 25 …target_compile_definitions(zephyr-802154-interface INTERFACE NRF_802154_CCA_MODE_DEFAULT=NRF_RADIO… 27 …target_compile_definitions(zephyr-802154-interface INTERFACE NRF_802154_CCA_MODE_DEFAULT=NRF_RADIO… 29 …target_compile_definitions(zephyr-802154-interface INTERFACE NRF_802154_CCA_MODE_DEFAULT=NRF_RADIO… 31 …target_compile_definitions(zephyr-802154-interface INTERFACE NRF_802154_CCA_MODE_DEFAULT=NRF_RADIO… 52 target_compile_definitions(zephyr-802154-interface 53 INTERFACE 75 target_compile_definitions(zephyr-802154-interface INTERFACE NRF_802154_ENCRYPTION_ENABLED=1) [all …]
|
/Zephyr-Core-3.5.0/include/zephyr/net/ |
D | virtual.h | 2 * @brief Virtual Network Interface 30 * @brief Virtual network interface support functions 31 * @defgroup virtual Virtual Network Interface Support Functions 36 /** Virtual interface capabilities */ 75 * struct so that we are compatible with network interface API. 79 /** Get the virtual interface capabilities */ 94 /** Check if this received network packet is for this interface. 95 * The callback returns NET_CONTINUE if this interface will accept the 97 * dropped and NET_OK to pass it to next interface. 104 /** Pass the attachment information to virtual interface */ [all …]
|
D | net_if.h | 9 * @brief Public API for network interface 16 * @brief Network Interface abstraction layer 17 * @defgroup net_if Network Interface abstraction layer 48 * @brief Network Interface unicast IP addresses 50 * Stores the unicast IP addresses assigned to this network interface. 89 * @brief Network Interface multicast IP addresses 91 * Stores the multicast IP addresses assigned to this network interface. 107 * @brief Network Interface IPv6 prefixes 109 * Stores the multicast IP addresses assigned to this network interface. 118 /** Backpointer to network interface where this prefix is used */ [all …]
|
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/ |
D | net_if.rst | 3 Network Interface 13 The network interface is a nexus that ties the network device drivers 15 data is transferred via a network interface. The network interfaces cannot be 25 The network interface can be turned ON by calling ``net_if_up()`` and OFF 27 interface is also turned ON by default. 30 pointer or by a network interface index. The network interface can be 31 resolved from its index by calling ``net_if_get_by_index()`` and from interface 42 The ``net_if_get_default()`` returns a *default* network interface. What 43 this default interface means can be configured via options like 47 selecting the default network interface. [all …]
|
D | vlan.rst | 18 In Zephyr, each individual VLAN is modeled as a virtual network interface. 19 This means that there is an ethernet network interface that corresponds to 20 a real physical ethernet port in the system. A virtual network interface is 21 created for each VLAN, and this virtual network interface connects to the 22 real network interface. This is similar to how Linux implements VLANs. The 23 *eth0* is the real network interface and *vlan0* is a virtual network interface 29 one network interface without VLAN support, and two with VLAN support, the 35 to give the network interface and desired VLAN tag as a parameter to that 36 function. The VLAN tagging for a given network interface can be disabled by a 38 the VLAN network interface itself, such as setting the IP address, etc. [all …]
|
/Zephyr-Core-3.5.0/boards/arm/nrf9160dk_nrf52840/dts/bindings/ |
D | nordic,nrf9160dk-nrf52840-interface.yaml | 8 nRF9160 DK GPIO interface between nRF9160 and nRF52840 10 This interface can be used for inter-SoC communication on the DK. 14 | P0.17 | -- nRF interface line 0 -- | P0.17 | 15 | P0.18 | -- nRF interface line 1 -- | P0.20 | 16 | P0.19 | -- nRF interface line 2 -- | P0.15 | 17 | P0.21 | -- nRF interface line 3 -- | P0.22 | 18 | P0.22 | -- nRF interface line 4 -- | P1.04 | 19 | P0.23 | -- nRF interface line 5 -- | P1.02 | 20 | COEX0 | -- nRF interface line 6 -- | P1.13 | 21 | COEX1 | -- nRF interface line 7 -- | P1.11 | [all …]
|
/Zephyr-Core-3.5.0/boards/arm/nrf9160dk_nrf9160/dts/bindings/ |
D | nordic,nrf9160dk-nrf52840-interface.yaml | 8 nRF9160 DK GPIO interface between nRF9160 and nRF52840 10 This interface can be used for inter-SoC communication on the DK. 14 | P0.17 | -- nRF interface line 0 -- | P0.17 | 15 | P0.18 | -- nRF interface line 1 -- | P0.20 | 16 | P0.19 | -- nRF interface line 2 -- | P0.15 | 17 | P0.21 | -- nRF interface line 3 -- | P0.22 | 18 | P0.22 | -- nRF interface line 4 -- | P1.04 | 19 | P0.23 | -- nRF interface line 5 -- | P1.02 | 20 | COEX0 | -- nRF interface line 6 -- | P1.13 | 21 | COEX1 | -- nRF interface line 7 -- | P1.11 | [all …]
|
/Zephyr-Core-3.5.0/include/zephyr/dt-bindings/gpio/ |
D | digilent-pmod.h | 31 * For reference see the Pmod interface specification: 32 * https://digilent.com/reference/_media/reference/pmod/pmod-interface-specification-1_2_0.pdf 39 * Pmod Interface Type 1 or 1A (GPIO or expanded GPIO) 49 * Used with Pmod Interface Type 2 (SPI) peripherals. 55 * Used with Pmod Interface Type 2 (SPI) peripherals. 61 * Used with Pmod Interface Type 2 (SPI) peripherals. 67 * Used with Pmod Interface Type 2 (SPI) peripherals. 75 * Used with Pmod Interface Type 2A (expanded SPI) peripherals. 81 * Used with Pmod Interface Type 2A (expanded SPI) peripherals. 87 * Used with Pmod Interface Type 2A (expanded SPI) peripherals. [all …]
|
/Zephyr-Core-3.5.0/samples/net/virtual/ |
D | Kconfig | 1 # Private config options for virtual network interface sample app 6 mainmenu "Networking virtual network interface sample application" 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 string "My IPv4 netmask for second interface" 26 string "My IPv6 address for third interface" 31 string "My IPv4 address for third interface" 36 string "My IPv4 netmask for third interface"
|
D | README.rst | 1 .. zephyr:code-sample:: virtual-network-interface 2 :name: Virtual network interface 5 Create a sample virtual network interface. 10 This sample application creates a sample virtual network interface for 14 Ethernet network interface is providing the real network interface and 17 On top of Ethernet interface there are two virtual network interfaces, 21 The sample provides tunnel interface which runs on top of the IPv6 tunnel. 42 an Ethernet network interface. Build the sample application like this:
|
/Zephyr-Core-3.5.0/samples/net/sockets/echo_server/ |
D | Kconfig | 16 string "My IPv6 address for second interface" 21 string "My IPv4 address for second interface" 26 string "My IPv4 netmask for second interface" 31 int "VLAN tag for second interface" 40 string "My IPv6 address for third interface" 45 string "My IPv4 address for third interface" 50 string "My IPv4 netmask for third interface" 55 int "VLAN tag for third interface" 64 string "Remote IP address of the tunnel interface" 70 string "My address for tunnel interface"
|
D | overlay-vlan.conf | 3 # We have one non-vlan interface and two VLAN interfaces 8 # First ethernet interface will use these settings 14 # Second ethernet interface will have these settings 19 # VLAN tag for the second interface 22 # Settings for the third network interface 27 # VLAN tag for the second interface
|
/Zephyr-Core-3.5.0/drivers/modem/ |
D | modem_iface_uart.h | 2 * @brief Modem interface for UART header file. 4 * Modem interface UART handling for modem context driver. 41 * @brief Init modem interface device for UART 45 * @param iface: modem interface to initialize. 54 * @brief Modem uart interface configuration 58 * @param dev UART device used for interface 69 * @brief Initialize modem interface for UART 71 * @param iface Interface structure to initialize 72 * @param data UART data structure used by the modem interface 82 * @brief Wait for rx data ready from uart interface [all …]
|
/Zephyr-Core-3.5.0/subsys/modbus/ |
D | modbus_internal.h | 93 /* Interface name */ 103 /* True if interface is configured as client */ 109 /* Interface state */ 141 * @brief Get Modbus interface context. 143 * @param ctx Modbus interface context 145 * @retval Pointer to interface context or NULL 146 * if interface not available or not configured; 151 * @brief Get Modbus interface index. 153 * @param ctx Pointer to Modbus interface context 155 * @retval Interface index or negative error value. [all …]
|
/Zephyr-Core-3.5.0/samples/net/gptp/ |
D | Kconfig | 7 # gPTP protocol will run in the non-VLAN interface and then there 8 # will be two VLAN interface for other use. This is just an example 18 string "My IPv6 address for second interface" 23 string "My IPv4 address for second interface" 28 int "VLAN tag for second interface" 37 string "My IPv6 address for third interface" 42 string "My IPv4 address for third interface" 47 int "VLAN tag for third interface"
|
/Zephyr-Core-3.5.0/samples/net/sockets/txtime/ |
D | overlay-vlan.conf | 3 # We have one non-vlan interface and two VLAN interfaces 8 # First ethernet interface will use these settings 14 # Second ethernet interface will have these settings 18 # VLAN tag for the second interface 21 # Settings for the third network interface 25 # VLAN tag for the second interface
|
/Zephyr-Core-3.5.0/drivers/ethernet/ |
D | Kconfig.native_posix | 15 bool "Start network interface automatically" 18 interface, requiring ``zephyr.exe`` to be run with root privileges 20 If not set (the default and recommended way), the network interface 32 network interface is created. The script should setup IP addresses 33 etc. for the host TAP network interface. 35 -i|--interface <network interface name>, default is zeth 47 network interface is created and setup script has been run. 49 the network traffic for the freshly started network interface. 50 Note that the network interface name CONFIG_ETH_NATIVE_POSIX_DRV_NAME 74 By default only one network interface is created. It is possible [all …]
|
/Zephyr-Core-3.5.0/tests/lib/newlib/thread_safety/src/ |
D | locks.c | 11 * locking interface is functional and the internal newlib locks function as 54 * @brief Test retargetable locking non-recursive (semaphore) interface 58 * interface. 109 * @brief Test retargetable locking recursive (mutex) interface 112 * acquired, released, and closed through the retargetable locking interface. 155 * retargetable locking interface. This operation should fail if the in sinit_lock_thread_acq() 157 * retargetable locking interface. in sinit_lock_thread_acq() 163 "retargetable locking interface"); in sinit_lock_thread_acq() 172 * retargetable locking interface. This operation should succeed if the in sinit_lock_thread_rel() 174 * retargetable locking interface. in sinit_lock_thread_rel() [all …]
|
/Zephyr-Core-3.5.0/samples/net/sockets/echo_client/ |
D | overlay-vlan.conf | 3 # We have one non-vlan interface and two VLAN interfaces 9 # First ethernet interface will use these settings 15 # Second ethernet interface will have these settings 19 # VLAN tag for the second interface 22 # Settings for the third network interface 26 # VLAN tag for the second interface
|
D | Kconfig | 9 string "My IPv6 address for second interface" 14 string "My IPv4 address for second interface" 19 int "VLAN tag for second interface" 28 string "My IPv6 address for third interface" 33 string "My IPv4 address for third interface" 38 int "VLAN tag for third interface"
|
/Zephyr-Core-3.5.0/tests/net/virtual/ |
D | Kconfig | 1 # Private config options for virtual network interface test app 6 mainmenu "Virtual network interface test application" 9 string "Remote IP address of the tunnel interface" 15 string "My address for tunnel interface" 21 string "Name of the tunnel interface"
|
/Zephyr-Core-3.5.0/boards/arm/efr32_radio/support/ |
D | openocd.cfg | 2 set INTERFACE $env(OPENOCD_INTERFACE) 4 # By default connect over Debug USB port using the J-Link interface 5 set INTERFACE "jlink" 8 source [find interface/$INTERFACE.cfg]
|
/Zephyr-Core-3.5.0/samples/net/lldp/ |
D | Kconfig | 15 string "My IPv6 address for second interface" 20 string "My IPv4 address for second interface" 25 int "VLAN tag for second interface" 34 string "My IPv6 address for third interface" 39 string "My IPv4 address for third interface" 44 int "VLAN tag for third interface"
|
/Zephyr-Core-3.5.0/boards/arm/efm32gg_stk3701a/support/ |
D | openocd.cfg | 2 set INTERFACE $env(OPENOCD_INTERFACE) 4 # By default connect over Debug USB port using the J-Link interface 5 set INTERFACE "jlink" 8 source [find interface/$INTERFACE.cfg]
|
/Zephyr-Core-3.5.0/boards/arm/efm32gg_slwstk6121a/support/ |
D | openocd.cfg | 2 set INTERFACE $env(OPENOCD_INTERFACE) 4 # By default connect over Debug USB port using the J-Link interface 5 set INTERFACE "jlink" 8 source [find interface/$INTERFACE.cfg]
|
12345678910>>...68