Searched refs:mac1 (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/targets/ |
D | esp8266.py | 137 mac1 = self.read_reg(self.ESP_OTP_MAC1) 141 elif ((mac1 >> 16) & 0xFF) == 0: 143 elif ((mac1 >> 16) & 0xFF) == 1: 147 return oui + ((mac1 >> 8) & 0xFF, mac1 & 0xFF, (mac0 >> 24) & 0xFF)
|
D | esp32h2beta1.py | 114 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC 115 bitstring = struct.pack(">II", mac1, mac0)[2:]
|
D | esp32c6.py | 136 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC 137 bitstring = struct.pack(">II", mac1, mac0)[2:]
|
D | esp32c3.py | 134 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC 135 bitstring = struct.pack(">II", mac1, mac0)[2:]
|
D | esp32s2.py | 187 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC 188 bitstring = struct.pack(">II", mac1, mac0)[2:]
|
D | esp32s3.py | 213 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC 214 bitstring = struct.pack(">II", mac1, mac0)[2:]
|
/hal_espressif-3.6.0/components/esp_rom/esp32s2/ |
D | usb_descriptors.c | 59 const uint32_t mac1 = REG_GET_FIELD(EFUSE_RD_MAC_SPI_SYS_1_REG, EFUSE_MAC_1); in rom_usb_cdc_set_descriptor_patch() local 62 memcpy(mac_bytes + 4, &mac1, 2); in rom_usb_cdc_set_descriptor_patch()
|
/hal_espressif-3.6.0/components/esp_eth/src/ |
D | esp_eth_mac_openeth.c | 156 const uint8_t mac1[4] = {addr[1], addr[0]}; in emac_opencores_set_addr() local 159 memcpy(&mac1_u32, &mac1, 4); in emac_opencores_set_addr()
|