Home
last modified time | relevance | path

Searched refs:mac1 (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/targets/
Desp8266.py137 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)
Desp32h2beta1.py114 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC
115 bitstring = struct.pack(">II", mac1, mac0)[2:]
Desp32c6.py136 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC
137 bitstring = struct.pack(">II", mac1, mac0)[2:]
Desp32c3.py134 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC
135 bitstring = struct.pack(">II", mac1, mac0)[2:]
Desp32s2.py187 mac1 = self.read_reg(self.MAC_EFUSE_REG + 4) # only bottom 16 bits are MAC
188 bitstring = struct.pack(">II", mac1, mac0)[2:]
Desp32s3.py213 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/
Dusb_descriptors.c59 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/
Desp_eth_mac_openeth.c156 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()