Searched +full:assigned +full:- +full:address (Results 1 – 25 of 225) sorted by relevance
123456789
/Zephyr-latest/tests/drivers/build_all/sensor/ |
D | i3c.dtsi | 4 * SPDX-License-Identifier: Apache-2.0 16 assigned-address = <0x1>; 17 drdy-gpios = <&test_gpio 0 0>; 23 assigned-address = <0x2>; 24 drdy-gpios = <&test_gpio 0 0>; 30 assigned-address = <0x3>; 31 drdy-gpios = <&test_gpio 0 0>; 37 assigned-address = <0x4>; 43 assigned-address = <0x5>; 44 int1-gpios = <&test_gpio 0 0>; [all …]
|
/Zephyr-latest/subsys/net/lib/dhcpv4/ |
D | Kconfig | 6 # SPDX-License-Identifier: Apache-2.0 18 module-dep = NET_LOG 19 module-str = Log level for DHCPv4 client 20 module-help = Enable debug diagnostic from DHCPV4 client. 55 If set, custom callbacks for encapsulated vendor-specific 64 servers, before the assigned address is configured on the interface. 108 module-dep = NET_LOG 109 module-str = Log level for DHCPv4 server 110 module-help = Enables DHCPv4 server output debug messages 122 int "Number of IPv4 addresses that can be assigned by the server" [all …]
|
/Zephyr-latest/dts/bindings/i3c/ |
D | i3c-device.yaml | 2 # SPDX-License-Identifier: Apache-2.0 8 on-bus: i3c 16 For I3C devices, the 3 fields are static address, first half 18 1. The static address can be assigned to be the target device's 19 dynamic address before Dynamic Address Assignment (DAA) 20 starts. Can be zero if static address is not used, and 21 target address is determined via DAA. 23 ID left-shifted by 1, where the manufacturer ID is 24 the bits 33-47 (zero-based) of the 48-bit Provisioned ID. 26 the part ID (bits 16-31 of the Provisioned ID) left-shifted [all …]
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | net_config.rst | 14 semi-automatic way during the system boot, based on user-supplied 20 .. csv-table:: Kconfig options for network configuration library 36 the networking to be ready and available. If for example IPv4 address from 53 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV6_ADDR`","Local static IPv6 address assigned to 55 ":kconfig:option:`CONFIG_NET_CONFIG_PEER_IPV6_ADDR`","Peer static IPv6 address. This is mainly 56 useful in testing setups where the application can connect to a pre-defined host." 57 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_ADDR`","Local static IPv4 address assigned to 59 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_NETMASK`","Static IPv4 netmask assigned to the IPv4 60 address." 61 ":kconfig:option:`CONFIG_NET_CONFIG_MY_IPV4_GW`","Static IPv4 gateway address assigned to the [all …]
|
/Zephyr-latest/include/zephyr/net/ |
D | dhcpv4_server.h | 8 * SPDX-License-Identifier: Apache-2.0 63 * IPv4 addresses from the configured address pool accordingly. 66 * @param base_addr First IPv4 address from the DHCPv4 address pool. The number 88 * @brief Callback used while iterating over active DHCPv4 address leases 91 * @param lease Pointer to the DHPCv4 address lease slot 99 * @brief Iterate over all DHCPv4 address leases on a given network interface 105 * @param cb User-supplied callback function to call 114 * @brief Callback used to let application provide an address for a given 116 * @details This function is called before assigning an address to a client, 117 * and lets the application override the address for a given client. If the [all …]
|
/Zephyr-latest/subsys/net/l2/ethernet/lldp/ |
D | Kconfig | 2 # SPDX-License-Identifier: Apache-2.0 15 module-dep = NET_LOG 16 module-str = Log level for LLDP 17 module-help = Enables core LLDP code to output debug messages. 29 (non-fast mode) transmission periods. For further information 64 Subtype 4 = MAC address 65 Subtype 5 = Network address 67 Subtype 7 = Locally assigned 68 If subtype 4 is selected, MAC address, then configs 74 hex "Chassis ID MAC Address Byte 0" [all …]
|
/Zephyr-latest/tests/boards/espressif/ethernet/ |
D | Kconfig | 2 # SPDX-License-Identifier: Apache-2.0 12 Timeout duration for receiving IPv4 address from DHCP. 13 If no address is assigned within this time, test will fail.
|
/Zephyr-latest/dts/bindings/ethernet/ |
D | ethernet-controller.yaml | 2 # SPDX-License-Identifier: Apache-2.0 9 local-mac-address: 10 type: uint8-array 11 description: Specifies the MAC address that was assigned to the network device 13 zephyr,random-mac-address: 16 Use a random MAC address generated when the driver is initialized. 18 MAC address in peers' ARP caches and lead to issues and delays in 24 If set we ignore any setting of the local-mac-address property. 26 phy-handle: 31 phy-connection-type: [all …]
|
D | adi,adin2111.yaml | 2 # SPDX-License-Identifier: Apache-2.0 5 ADIN2111 standalone 10BASE-T1L Ethernet controller with SPI interface. 12 spi-max-frequency = <25000000>; 13 int-gpios = <&gpioe 12 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; 14 reset-gpios = <&gpioe 8 GPIO_ACTIVE_LOW>; 16 local-mac-address = [ CA 2F B7 10 23 63 ]; 19 local-mac-address = [ 3C 82 D4 A2 29 8E ]; 22 compatible = "adi,adin2111-mdio"; 24 #address-cells = <1>; 25 #size-cells = <0>; [all …]
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | addresses.h | 4 * SPDX-License-Identifier: Apache-2.0 11 * @brief I3C Address-related Helper Code 12 * @defgroup i3c_addresses I3C Address-related Helper Code 26 /** Broadcast Address on I3C bus. */ 35 * Enum to indicate whether an address is reserved, has I2C/I3C device attached, 39 /** Address has not device attached. */ 42 /** Address is reserved. */ 45 /** Address is associated with an I3C device. */ 48 /** Address is associated with an I2C device. */ 64 * @brief Initialize the I3C address slots struct. [all …]
|
/Zephyr-latest/dts/bindings/dsa/ |
D | microchip_dsa.yaml | 2 # SPDX-License-Identifier: Apache-2.0 7 include: [spi-device.yaml] 9 dsa-master-port: 12 dsa-slave-ports: 15 reset-gpios: 16 type: phandle-array 20 child-binding: 23 local-mac-address: 24 type: uint8-array 26 Specifies the MAC address that was assigned to the port
|
/Zephyr-latest/soc/espressif/esp32s2/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 derived from a single base MAC address. If the number of universal MAC addresses is two, 14 address. 16 the base MAC address. If the number of universal MAC addresses is one, only WiFi station 17 receives a universally administered MAC address. 20 When using the default (Espressif-assigned) base MAC address, either setting can be used. 21 When using a custom universal MAC address range, the correct setting will depend on the
|
/Zephyr-latest/soc/espressif/esp32/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 derived from a single base MAC address. If the number of universal MAC addresses is four, 14 administered MAC address. These are generated sequentially by adding 0, 1, 2 and 3 (respectively) 15 to the final octet of the base MAC address. If the number of universal MAC addresses is two, 16 only two interfaces (WiFi station and Bluetooth) receive a universally administered MAC address. 17 These are generated sequentially by adding 0 and 1 (respectively) to the base MAC address. 20 When using the default (Espressif-assigned) base MAC address, either setting can be used. 21 When using a custom universal MAC address range, the correct setting will depend on the
|
/Zephyr-latest/doc/connectivity/networking/ |
D | usbnet_setup.rst | 15 The :zephyr:code-sample:`sockets-echo-server` application from the Zephyr source 27 address. 29 You can check that network device is created and MAC address assigned by 32 .. code-block:: console 34 …cdc_ether 1-2.7:1.0 eth0: register 'cdc_ether' at usb-0000:00:01.2-2.7, CDC Ethernet Device, 00:00… 42 To establish network connection to the board we need to choose IP address 51 .. code-block:: console 66 This command shows that one IPv4 address and two IPv6 addresses have 67 been assigned to the board. We can use either IPv4 or IPv6 for network 74 Setting IPv4 address and routing [all …]
|
/Zephyr-latest/soc/espressif/esp32c2/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 single base MAC address. 14 Bluetooth and Ethernet) receive a universally administered MAC address. These are generated 15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address. 17 receive a universally administered MAC address. These are generated sequentially by adding 0 18 …and 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethern… 21 …When using the default (Espressif-assigned) base MAC address, either setting can be used. When usi… 22 a custom universal MAC address range, the correct setting will depend on the allocation of MAC 24 …Note that ESP32-C6 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/Zephyr-latest/soc/espressif/esp32c3/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 single base MAC address. 14 Bluetooth and Ethernet) receive a universally administered MAC address. These are generated 15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address. 17 receive a universally administered MAC address. These are generated sequentially by adding 0 18 …and 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethern… 21 …When using the default (Espressif-assigned) base MAC address, either setting can be used. When usi… 22 a custom universal MAC address range, the correct setting will depend on the allocation of MAC 24 …Note that ESP32-C3 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/Zephyr-latest/soc/espressif/esp32c6/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 single base MAC address. 14 Bluetooth and Ethernet) receive a universally administered MAC address. These are generated 15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address. 17 receive a universally administered MAC address. These are generated sequentially by adding 0 18 …and 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethern… 21 …When using the default (Espressif-assigned) base MAC address, either setting can be used. When usi… 22 a custom universal MAC address range, the correct setting will depend on the allocation of MAC 24 …Note that ESP32-C6 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/Zephyr-latest/soc/espressif/esp32s3/ |
D | Kconfig.mac | 2 # SPDX-License-Identifier: Apache-2.0 7 bool "Number of universally administered (by IEEE) MAC address" 12 single base MAC address. 14 Bluetooth and Ethernet) receive a universally administered MAC address. These are generated 15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address. 17 receive a universally administered MAC address. These are generated sequentially by adding 0 18 …and 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethern… 21 …When using the default (Espressif-assigned) base MAC address, either setting can be used. When usi… 22 a custom universal MAC address range, the correct setting will depend on the allocation of MAC
|
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_get_addr/src/ |
D | test_suite_full_list_overwrite_oldest.c | 4 * SPDX-License-Identifier: Apache-2.0 16 /* This LUT contains different combinations of ID and Address pairs */ 29 /* Find the key slot with matched id and address */ in bt_unpair_custom_fake() 35 /* This check is used here because bt_unpair() is called with a local variable address */ in bt_unpair_custom_fake() 36 expect_single_call_bt_unpair(oldest_params_vector->id, oldest_params_vector->addr); in bt_unpair_custom_fake() 114 zassert_true(rv == 0, "Failed to fill keys pool list, error code %d", -rv); in test_case_setup() 120 * Test adding extra (ID, Address) pair while the keys pool list is full while all keys are in 121 * use with connections so that no more (ID, Address) pairs can be added. 124 * - Keys pool list is full 125 * - All Keys are used with a connection [all …]
|
/Zephyr-latest/subsys/usb/device/class/netusb/ |
D | Kconfig | 4 # SPDX-License-Identifier: Apache-2.0 18 Class (CDC) USB protocol specified by USB-IF. 52 string "USB ECM Host OS MAC Address" 55 MAC Host OS Address string. 56 MAC Address which would be assigned to network device, created in 88 module-dep = LOG 89 module-str = USB Device Network log level
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | i3c.rst | 3 Improved Inter-Integrated Circuit (I3C) Bus 6 I3C (Improved Inter-Integrated Circuit) is a two-signal shared 18 .. _i3c-controller-api: 30 dynamic address assignment needs to be carried out by the I3C 36 .. code-block:: c 56 structures to aid in address assignments and device list management. 80 If any connected devices have already been assigned an address, 82 for example, at power-on. So it is a good idea to reset and 87 #. Do ``SETDASA`` to assign a dynamic address using the static address of the device 97 #. Do ``ENTDAA`` to start dynamic address assignment, if there are [all …]
|
/Zephyr-latest/samples/net/common/ |
D | net_sample_common.c | 4 * SPDX-License-Identifier: Apache-2.0 23 LOG_INF("Network connectivity established and IP address assigned"); in l4_event_handler()
|
/Zephyr-latest/samples/net/sockets/echo_client/ |
D | overlay-ot-rcp-host-uart.conf | 49 # To have OTBR On-Mesh address assigned (fd11:22:0:0:) 52 # Setup the communication to echo-server
|
/Zephyr-latest/include/zephyr/net/http/ |
D | service.h | 4 * SPDX-License-Identifier: Apache-2.0 51 * unique. The @p _resource must be non-NULL. 55 * @param _resource Pathname-like string identifying the resource. 56 * @param _detail Implementation-specific detail associated with the resource. 104 * @note The @p _host parameter is used to specify an IP address either in 105 * IPv4 or IPv6 format a fully-qualified hostname or a virtual host. If left NULL, the listening 108 * @note The @p _port parameter must be non-`NULL`. It points to a location that specifies the port 110 * number will be used and the actual port number assigned will be written back to memory. For 114 * @param _host IP address or hostname associated with the service. 118 * @param _detail Implementation-specific detail associated with the service. [all …]
|
/Zephyr-latest/samples/sensor/bme280/ |
D | rpi_pico_spi_pio.overlay | 3 /* gpio 13 is used for chip select, not assigned to the PIO */ 9 input-enable; 18 pinctrl-0 = <&pio0_spi0_default>; 19 pinctrl-names = "default"; 21 compatible = "raspberrypi,pico-spi-pio"; 23 #address-cells = <1>; 24 #size-cells = <0>; 26 miso-gpios = <&gpio0 12 0>; 27 cs-gpios = <&gpio0 13 GPIO_ACTIVE_LOW>; 28 clk-gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; [all …]
|
123456789