Home
last modified time | relevance | path

Searched refs:is_readable (Results 1 – 13 of 13) sorted by relevance

/hal_espressif-latest/tools/esptool_py/test/efuse_scripts/esp32xx/
Dexecute_efuse_script.py27 if efuses["BLOCK_SYS_DATA2"].is_readable() or efuses["BLOCK_SYS_DATA2"].is_writeable():
38 if not efuses["BLOCK_KEY0"].is_readable() or efuses["BLOCK_KEY0"].is_writeable():
57 if not efuses["BLOCK_KEY1"].is_readable() or efuses["BLOCK_KEY1"].is_writeable():
63 if efuses["BLOCK_KEY0"].is_readable() or efuses["BLOCK_KEY0"].is_writeable():
Dexecute_efuse_script2.py13 if not efuses["BLOCK_SYS_DATA2"].is_readable() or not efuses["BLOCK_SYS_DATA2"].is_writeable():
23 if not efuses["BLOCK_KEY0"].is_readable() or not efuses["BLOCK_KEY0"].is_writeable():
29 if not efuses["BLOCK_KEY1"].is_readable() or not efuses["BLOCK_KEY1"].is_writeable():
/hal_espressif-latest/tools/esptool_py/test/efuse_scripts/esp32/
Dexecute_efuse_script.py28 if not efuses["BLOCK1"].is_readable() or not efuses["BLOCK1"].is_writeable():
35 if not efuses["BLOCK2"].is_readable() or efuses["BLOCK2"].is_writeable():
49 if efuses["BLOCK1"].is_readable() or efuses["BLOCK1"].is_writeable():
Dexecute_efuse_script2.py10 if not efuses["BLOCK1"].is_readable() or not efuses["BLOCK1"].is_writeable():
16 if not efuses["BLOCK2"].is_readable() or not efuses["BLOCK2"].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dbase_operations.py303 (readable, writeable) = (e.is_readable(), e.is_writeable())
321 if not e.is_readable(blk_part=i):
540 if not efuse.is_readable():
567 if not efuse.is_readable():
629 if efuse.is_readable():
Dbase_fields.py111 def is_readable(self, blk_part=None): member in EfuseProtectBase
145 if not self.is_readable():
414 if not self.is_readable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c61/
Doperations.py200 if not block.is_readable() or not block.is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32p4/
Doperations.py196 if not block.is_readable() or not block.is_writeable():
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dexecute-scripts-cmd.rst73 … checks them after reading back. To check read and write protection, ``is_readable()`` and ``is_wr…
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s2/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3beta2/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
/hal_espressif-latest/tools/esptool_py/test/
Dtest_esptool.py295 blk1_rd_en = efuses["BLOCK1"].is_readable()