Home
last modified time | relevance | path

Searched full:custom_mac (Results 1 – 25 of 73) sorted by relevance

123

/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dburn-custom-mac-cmd.rst10 * ``MAC``. Custom MAC Address (``CUSTOM_MAC``) to burn given in hexadecimal format with bytes separ…
16CUSTOM_MAC`` is placed in an eFuse block with a coding scheme and already has data then it is not …
22 1. ``CUSTOM_MAC``
24 3. ``CUSTOM_MAC_CRC`` = crc8(``CUSTOM_MAC``)
32 - 'CUSTOM_MAC' (Custom MAC) 0x000000000000 -> 0x167215926348
50 CUSTOM_MAC (BLOCK3): Custom MAC
61 1. ``CUSTOM_MAC``
69 - 'CUSTOM_MAC' (Custom MAC addr) 0x000000000000 -> 0x167215926348
90 …CUSTOM_MAC_USED (BLOCK0) Enable CUSTOM_MAC programming …
91 CUSTOM_MAC (BLOCK1) Custom MAC addr
[all …]
Dexecute-scripts-cmd.rst14 …s to retrieve unique data per chip from configfiles and then burn them (ex. CUSTOM_MAC, UNIQUE_ID).
24 …s to retrieve unique data per chip from configfiles and then burn them (ex. CUSTOM_MAC, UNIQUE_ID).
84 The example of a script to burn custom_mac address and unique_id getting them from configfiles.
103 The example of a script to burn custom_mac address that generated right in the script.
Dget-custom-mac-cmd.rst6 The ``espefuse.py burn_custom_mac`` command prints the Custom MAC Address (``CUSTOM_MAC``).
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32/
Dfields.py104 EfuseField.convert(self, efuse) for efuse in self.Fields.CUSTOM_MAC
126 EfuseField.convert(self, efuse) for efuse in self.Fields.CUSTOM_MAC
143 for efuse in self.Fields.CUSTOM_MAC:
148 EfuseField.convert(self, efuse) for efuse in self.Fields.CUSTOM_MAC
272 Supports: MAC and CUSTOM_MAC fields.
273 (if MAC_VERSION == 1 then the CUSTOM_MAC is used)
330 if self.name == "CUSTOM_MAC":
346 if self.name == "CUSTOM_MAC":
349 # - CUSTOM_MAC = AB:CD:EF:01:02:03
350 # - CUSTOM_MAC_CRC = crc8(CUSTOM_MAC)
Doperations.py112 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
122 # - CUSTOM_MAC = AA:CD:EF:01:02:03
123 # - CUSTOM_MAC_CRC = crc8(CUSTOM_MAC)
124 efuses["CUSTOM_MAC"].save(args.mac)
136 version, efuses["CUSTOM_MAC"].get()
Dmem_definition.py95 self.CUSTOM_MAC = []
146 elif efuse.name in ["CUSTOM_MAC_CRC", "CUSTOM_MAC"]:
147 self.CUSTOM_MAC.append(efuse)
/hal_espressif-latest/tools/esptool_py/test/efuse_scripts/esp32/
Dexecute_efuse_script.py42 if efuses["CUSTOM_MAC"].get_meaning() != "aa:bb:cc:dd:ee:88 (CRC 0x69 OK)":
43 raise esptool.FatalError("CUSTOM_MAC was not set correctly")
/hal_espressif-latest/components/efuse/esp32/
Desp_efuse_table.csv38 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 9, 1, [WR_DIS.MAC_CUSTOM] wr_dis o…
61 RD_DIS.CUSTOM_MAC, EFUSE_BLK0, 18, 1, [RD_DIS.MAC_CUSTOM] rd_dis o…
/hal_espressif-latest/components/efuse/esp32c2/
Desp_efuse_table.csv33 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 5, 1, [WR_DIS.MAC_CUSTOM WR_DIS.US…
80 USER_DATA.MAC_CUSTOM, EFUSE_BLK1, 0, 48, [MAC_CUSTOM CUSTOM_MAC] Cust…
Desp_efuse_table.c95 {EFUSE_BLK0, 5, 1}, // [WR_DIS.MAC_CUSTOM WR_DIS.USER_DATA_MAC_CUSTOM] wr_dis of CUSTOM_MAC,
283 {EFUSE_BLK1, 0, 48}, // [MAC_CUSTOM CUSTOM_MAC] Custom MAC address,
499 …&WR_DIS_CUSTOM_MAC[0], // [WR_DIS.MAC_CUSTOM WR_DIS.USER_DATA_MAC_CUSTOM] wr_dis of CUSTOM_MAC
734 &USER_DATA_MAC_CUSTOM[0], // [MAC_CUSTOM CUSTOM_MAC] Custom MAC address
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c2/
Doperations.py128 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
136 efuses["CUSTOM_MAC"].save(args.mac)
145 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c3/
Doperations.py171 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
179 efuses["CUSTOM_MAC"].save(args.mac)
187 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5/
Doperations.py171 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
179 efuses["CUSTOM_MAC"].save(args.mac)
187 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5beta3/
Doperations.py171 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
179 efuses["CUSTOM_MAC"].save(args.mac)
187 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32h2beta1/
Doperations.py170 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
178 efuses["CUSTOM_MAC"].save(args.mac)
186 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c6/
Doperations.py171 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
179 efuses["CUSTOM_MAC"].save(args.mac)
187 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c61/
Doperations.py172 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
180 efuses["CUSTOM_MAC"].save(args.mac)
188 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32h2/
Doperations.py170 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
178 efuses["CUSTOM_MAC"].save(args.mac)
186 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/components/efuse/esp32c3/
Desp_efuse_table.csv88 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 22, 1, [WR_DIS.MAC_CUSTOM WR_DIS.US…
185 USER_DATA.MAC_CUSTOM, EFUSE_BLK3, 200, 48, [MAC_CUSTOM CUSTOM_MAC] Cust…
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3/
Doperations.py172 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
180 efuses["CUSTOM_MAC"].save(args.mac)
188 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/components/efuse/esp32c6/
Desp_efuse_table.csv92 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 22, 1, [WR_DIS.MAC_CUSTOM WR_DIS.US…
194 USER_DATA.MAC_CUSTOM, EFUSE_BLK3, 200, 48, [MAC_CUSTOM CUSTOM_MAC] Cust…
/hal_espressif-latest/components/efuse/esp32s2/
Desp_efuse_table.csv96 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 22, 1, [WR_DIS.MAC_CUSTOM WR_DIS.US…
205 USER_DATA.MAC_CUSTOM, EFUSE_BLK3, 200, 48, [MAC_CUSTOM CUSTOM_MAC] Cust…
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s2/
Doperations.py172 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
180 efuses["CUSTOM_MAC"].save(args.mac)
188 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3beta2/
Doperations.py172 type=fields.base_fields.CheckArgValue(efuses, "CUSTOM_MAC"),
180 efuses["CUSTOM_MAC"].save(args.mac)
188 print("Custom MAC Address: {}".format(efuses["CUSTOM_MAC"].get()))
/hal_espressif-latest/components/efuse/esp32h2/
Desp_efuse_table.csv93 WR_DIS.CUSTOM_MAC, EFUSE_BLK0, 22, 1, [WR_DIS.MAC_CUSTOM WR_DIS.US…
196 USER_DATA.MAC_CUSTOM, EFUSE_BLK3, 200, 48, [MAC_CUSTOM CUSTOM_MAC] Cust…

123