/Zephyr-Core-2.7.6/cmake/linker_script/common/ |
D | debug-sections.cmake | 5 zephyr_linker_section(NAME .stab ADDRESS 0) 6 zephyr_linker_section(NAME .stabstr ADDRESS 0) 7 zephyr_linker_section(NAME .stab.excl ADDRESS 0) 8 zephyr_linker_section(NAME .stab.exclstr ADDRESS 0) 9 zephyr_linker_section(NAME .stab.index ADDRESS 0) 10 zephyr_linker_section(NAME .stab.indexstr ADDRESS 0) 11 zephyr_linker_section(NAME .gnu.build.attributes ADDRESS 0) 12 zephyr_linker_section(NAME .comment ADDRESS 0) 18 zephyr_linker_section(NAME .debug ADDRESS 0) 19 zephyr_linker_section(NAME .line ADDRESS 0) [all …]
|
/Zephyr-Core-2.7.6/include/bluetooth/ |
D | addr.h | 2 * @brief Bluetooth device address definitions and utilities. 22 * @brief Bluetooth device address definitions and utilities. 23 * @defgroup bt_addr Device Address 33 /** Bluetooth Device Address */ 38 /** Bluetooth LE Device Address */ 44 /** Bluetooth device "any" address, not a valid address */ 46 /** Bluetooth device "none" address, not a valid address */ 49 /** Bluetooth LE device "any" address, not a valid address */ 51 /** Bluetooth LE device "none" address, not a valid address */ 57 * @param a First Bluetooth device address to compare [all …]
|
/Zephyr-Core-2.7.6/include/net/ |
D | net_linkaddr.h | 9 * @brief Public API for network link address 24 * @brief Network link address library 25 * @defgroup net_linkaddr Network Link Address Library 30 /** Maximum length of the link address */ 42 * Type of the link address. This indicates the network technology that this 43 * address is used in. Note that in order to save space we store the value 48 /** Unknown link address type. */ 50 /** IEEE 802.15.4 link address. */ 52 /** Bluetooth IPSP link address. */ 54 /** Ethernet link address. */ [all …]
|
D | net_ip.h | 4 * Generic IPv6 and IPv4 address definitions. 51 /* Address families. */ 52 #define AF_UNSPEC PF_UNSPEC /**< Unspecified address family. */ 138 /** IPv6 address struct */ 147 /** IPv4 address struct */ 157 /** Socket address family type */ 160 /** Length of a socket address */ 168 /** Socket address struct for IPv6. */ 172 struct in6_addr sin6_addr; /* IPv6 address */ 179 struct in6_addr *sin6_addr; /* IPv6 address */ [all …]
|
D | net_if.h | 50 /** IP address */ 51 struct net_addr address; member 58 /** Duplicate address detection (DAD) timer */ 62 /** How the IP address was set */ 65 /** What is the current state of the address */ 73 /** Is the IP address valid forever */ 76 /** Is this IP address used or not */ 79 /** Is this IP address usage limited to the subnet (mesh) or not */ 91 /** IP address */ 92 struct net_addr address; member [all …]
|
/Zephyr-Core-2.7.6/subsys/net/l2/ethernet/lldp/ |
D | Kconfig | 64 Subtype 4 = MAC address 65 Subtype 5 = Network address 68 If subtype 4 is selected, MAC address, then configs 74 hex "Chassis ID MAC Address Byte 0" 78 Byte 0 of the MAC address. 81 hex "Chassis ID MAC Address Byte 1" 85 Byte 1 of the MAC address. 88 hex "Chassis ID MAC Address Byte 2" 92 Byte 2 of the MAC address. 95 hex "Chassis ID MAC Address Byte 3" [all …]
|
/Zephyr-Core-2.7.6/include/drivers/misc/ft8xx/ |
D | ft8xx_common.h | 31 * @param address Memory address to write to 34 void ft8xx_wr8(uint32_t address, uint8_t data); 39 * @param address Memory address to write to 42 void ft8xx_wr16(uint32_t address, uint16_t data); 47 * @param address Memory address to write to 50 void ft8xx_wr32(uint32_t address, uint32_t data); 55 * @param address Memory address to read from 59 uint8_t ft8xx_rd8(uint32_t address); 64 * @param address Memory address to read from 68 uint16_t ft8xx_rd16(uint32_t address); [all …]
|
/Zephyr-Core-2.7.6/arch/arm/include/aarch32/cortex_m/ |
D | cmse.h | 31 * Address information retrieval based on the TT instructions. 34 * security states and privilege levels have on memory at a specified address 38 * @brief Get the MPU region number of an address 40 * Return the non-negative MPU region that the address maps to, 47 * - the given address matches a single, enabled MPU region 49 * @param addr The address for which the MPU region is requested 56 * @brief Read accessibility of an address 63 * - if the address matches multiple MPU regions. 65 * @param addr The address for which the readability is requested 66 * @param force_npriv Instruct to return the readability of the address [all …]
|
/Zephyr-Core-2.7.6/drivers/misc/ft8xx/ |
D | ft8xx_common.c | 12 void ft8xx_wr8(uint32_t address, uint8_t data) in ft8xx_wr8() argument 16 err = ft8xx_drv_write(address, &data, sizeof(data)); in ft8xx_wr8() 17 __ASSERT(err == 0, "Writing FT8xx data at 0x%x failed", address); in ft8xx_wr8() 20 void ft8xx_wr16(uint32_t address, uint16_t data) in ft8xx_wr16() argument 26 err = ft8xx_drv_write(address, buffer, sizeof(buffer)); in ft8xx_wr16() 27 __ASSERT(err == 0, "Writing FT8xx data at 0x%x failed", address); in ft8xx_wr16() 30 void ft8xx_wr32(uint32_t address, uint32_t data) in ft8xx_wr32() argument 36 err = ft8xx_drv_write(address, buffer, sizeof(buffer)); in ft8xx_wr32() 37 __ASSERT(err == 0, "Writing FT8xx data at 0x%x failed", address); in ft8xx_wr32() 40 uint8_t ft8xx_rd8(uint32_t address) in ft8xx_rd8() argument [all …]
|
/Zephyr-Core-2.7.6/subsys/net/l2/openthread/ |
D | openthread_utils.c | 21 static bool is_anycast_locator(const otNetifAddress *address) in is_anycast_locator() argument 23 return address->mAddress.mFields.m16[4] == htons(0x0000) && in is_anycast_locator() 24 address->mAddress.mFields.m16[5] == htons(0x00ff) && in is_anycast_locator() 25 address->mAddress.mFields.m16[6] == htons(0xfe00) && in is_anycast_locator() 26 address->mAddress.mFields.m8[14] == ALOC16_MASK; in is_anycast_locator() 30 const uint8_t *address) in is_mesh_local() argument 35 return (memcmp(address, ml_prefix->m8, sizeof(ml_prefix)) == 0); in is_mesh_local() 105 const otNetifAddress *address; in add_ipv6_addr_to_zephyr() local 108 for (address = otIp6GetUnicastAddresses(context->instance); in add_ipv6_addr_to_zephyr() 109 address; address = address->mNext) { in add_ipv6_addr_to_zephyr() [all …]
|
/Zephyr-Core-2.7.6/drivers/ieee802154/ |
D | Kconfig.b91 | 26 bool "Random MAC address" 29 Generate a random MAC address dynamically. 34 hex "MAC Address Byte 4" 38 This is the byte 4 of the MAC address. 41 hex "MAC Address Byte 5" 45 This is the byte 5 of the MAC address. 48 hex "MAC Address Byte 6" 52 This is the byte 6 of the MAC address. 55 hex "MAC Address Byte 7" 59 This is the byte 7 of the MAC address.
|
D | Kconfig.cc2520 | 36 bool "Random MAC address" 39 Generate a random MAC address dynamically. 44 hex "MAC Address Byte 4" 48 This is the byte 4 of the MAC address. 51 hex "MAC Address Byte 5" 55 This is the byte 5 of the MAC address. 58 hex "MAC Address Byte 6" 62 This is the byte 6 of the MAC address. 65 hex "MAC Address Byte 7" 69 This is the byte 7 of the MAC address.
|
D | Kconfig.cc1200 | 36 bool "Random MAC address" 39 Generate a random MAC address dynamically. 44 hex "MAC Address Byte 4" 48 This is the byte 4 of the MAC address. 51 hex "MAC Address Byte 5" 55 This is the byte 5 of the MAC address. 58 hex "MAC Address Byte 6" 62 This is the byte 6 of the MAC address. 65 hex "MAC Address Byte 7" 69 This is the byte 7 of the MAC address.
|
D | Kconfig | 56 bits of MAC address 96 bool "Random MAC address" 99 Generate a random MAC address dynamically. 104 hex "MAC Address Byte 4" 108 This is the byte 4 of the MAC address. 111 hex "MAC Address Byte 5" 115 This is the byte 5 of the MAC address. 118 hex "MAC Address Byte 6" 122 This is the byte 6 of the MAC address. 125 hex "MAC Address Byte 7" [all …]
|
/Zephyr-Core-2.7.6/tests/bluetooth/tester/src/ |
D | bttester.h | 97 uint8_t address[6]; member 186 uint8_t address[6]; member 192 uint8_t address[6]; member 209 uint8_t address[6]; member 215 uint8_t address[6]; member 221 uint8_t address[6]; member 228 uint8_t address[6]; member 239 uint8_t address[6]; member 249 uint8_t address[6]; member 259 uint8_t address[6]; member [all …]
|
/Zephyr-Core-2.7.6/tests/net/ip-addr/src/ |
D | main.c | 231 /**TESTPOINT: Check if the IPv6 address is a loopback address*/ in test_ipv6_addresses() 233 "IPv6 loopback address check failed."); in test_ipv6_addresses() 235 /**TESTPOINT: Check if the IPv6 address is a multicast address*/ in test_ipv6_addresses() 237 "IPv6 multicast address check failed."); in test_ipv6_addresses() 243 /**TESTPOINT: Check if IPv6 interface address is added*/ in test_ipv6_addresses() 244 zassert_not_null(ifaddr1, "IPv6 interface address add failed"); in test_ipv6_addresses() 250 "IPv6 interface address mismatch"); in test_ipv6_addresses() 252 /**TESTPOINT: Check if the IPv6 address is a loopback address*/ in test_ipv6_addresses() 254 "My IPv6 loopback address check failed"); in test_ipv6_addresses() 256 /**TESTPOINT: Check IPv6 address*/ in test_ipv6_addresses() [all …]
|
/Zephyr-Core-2.7.6/tests/drivers/eeprom/src/ |
D | main.c | 50 off_t address; in test_write_rewrite() local 56 address = 0; in test_write_rewrite() 57 while (address < MIN(size, 16)) { in test_write_rewrite() 58 rc = eeprom_write(eeprom, address, wr_buf1, sizeof(wr_buf1)); in test_write_rewrite() 61 rc = eeprom_read(eeprom, address, rd_buf, sizeof(rd_buf)); in test_write_rewrite() 67 address += sizeof(wr_buf1); in test_write_rewrite() 70 address = 0; in test_write_rewrite() 71 while (address < MIN(size, 16)) { in test_write_rewrite() 72 rc = eeprom_write(eeprom, address, wr_buf2, sizeof(wr_buf2)); in test_write_rewrite() 75 rc = eeprom_read(eeprom, address, rd_buf, sizeof(rd_buf)); in test_write_rewrite() [all …]
|
/Zephyr-Core-2.7.6/include/bluetooth/mesh/ |
D | cfg_cli.h | 46 * @param addr Target node address. 60 * @param addr Target node address. 74 * @param addr Target node address. 85 * @param addr Target node address. 97 * @param addr Target node address. 112 * @param addr Target node address. 126 * @param addr Target node address. 136 * @param addr Target node address. 147 * @param addr Target node address. 159 * @param addr Target node address. [all …]
|
/Zephyr-Core-2.7.6/drivers/dma/ |
D | dma_sam_xdmac.h | 55 /** Source Address */ 57 /** Destination Address */ 61 /** Next descriptor address */ 69 /** Next Descriptor Address */ 73 /** Transfer Address */ 79 /** Next Descriptor Address */ 83 /** Source Address */ 85 /** Destination Address */ 91 /** Next Descriptor Address */ 95 /** Source Address */ [all …]
|
/Zephyr-Core-2.7.6/drivers/ethernet/ |
D | Kconfig.stm32_hal | 41 int "Phy address" 44 The phy address to use. 47 bool "Random MAC address" 51 Generate a random MAC address dynamically. 56 hex "MAC Address Byte 3" 60 This is the byte 3 of the MAC address. 63 hex "MAC Address Byte 4" 67 This is the byte 4 of the MAC address. 70 hex "MAC Address Byte 5" 74 This is the byte 5 of the MAC address.
|
/Zephyr-Core-2.7.6/doc/guides/arch/ |
D | x86.rst | 16 is executing in virtual address space. By default, physical and virtual 18 taking place in physical address space. The physical address space is 20 :kconfig:`CONFIG_SRAM_SIZE` while the virtual address space is marked by 26 Separate Virtual Address Space from Physical Address Space 30 address space. Code and data are linked in virtual address space, 32 and data must be available and also addressable in physical address 49 There are restrictions on where virtual address space can be: 51 - Physical and virtual address spaces must be disjoint. This is 56 - If :kconfig:`CONFIG_X86_PAE` is enabled (``=y``), each address space 69 - If :kconfig:`CONFIG_X86_PAE` is disabled (``=n``), each address space [all …]
|
/Zephyr-Core-2.7.6/samples/drivers/i2c_fujitsu_fram/ |
D | README.rst | 11 This assumes the slave address of FRAM is 0x50, where A0, A1, and A2 are all 32 Wrote 0xAE to address 0x00. 33 Wrote 0x86 to address 0x01. 34 Read 0xAE from address 0x00. 35 Read 0x86 from address 0x01. 36 Wrote 16 bytes to address 0x00. 37 Read 16 bytes from address 0x00.
|
/Zephyr-Core-2.7.6/dts/bindings/ethernet/ |
D | ethernet.yaml | 9 local-mac-address: 12 description: Specifies the MAC address that was assigned to the network device 15 zephyr,random-mac-address: 19 Use a random MAC address generated when the driver is initialized. 21 MAC address in peers' ARP caches and lead to issues and delays in 27 If set we ignore any setting of the local-mac-address property.
|
/Zephyr-Core-2.7.6/samples/application_development/code_relocation/src/ |
D | test_file1.c | 22 printk("Address of function_in_sram2 %p\n", &function_in_sram2); in function_in_sram2() 23 printk("Address of var_sram2_data %p\n", &var_sram2_data); in function_in_sram2() 24 printk("Address of k_sem_give %p\n", &k_sem_give); in function_in_sram2() 25 printk("Address of var_sram2_rodata %p\n", &var_sram2_rodata); in function_in_sram2() 26 printk("Address of var_sram2_bss %p\n\n", &var_sram2_bss); in function_in_sram2() 32 printk("Address of custom_section, func placed using attributes %p\n", in function_in_sram2() 34 printk("Address of custom_section data placed using attributes %p\n\n", in function_in_sram2()
|
/Zephyr-Core-2.7.6/include/sys/ |
D | sys_io.h | 32 * @param port the port address where to write the byte 41 * @param port the port address from where to read the byte 53 * @param port the port address where to write the 16 bits 62 * @param port the port address from where to read the 16 bits 74 * @param port the port address where to write the 32 bits 83 * @param port the port address from where to read the 32 bits 94 * @param port the port address from where to look for the bit 104 * @param port the port address from where to look for the bit 115 * @param port the port address from where to look for the bit 128 * @param port the port address from where to look for the bit [all …]
|