Home
last modified time | relevance | path

Searched refs:is_writeable (Results 1 – 18 of 18) 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():
44 if efuses["KEY_PURPOSE_0"].is_writeable():
54 if efuses["KEY_PURPOSE_1"].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/esp32c61/
Doperations.py200 if not block.is_readable() or not block.is_writeable():
203 if key_purpose_block.get() != "USER" or not key_purpose_block.is_writeable():
348 if efuses[block.key_purpose_name].is_writeable():
367 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32p4/
Doperations.py196 if not block.is_readable() or not block.is_writeable():
199 if key_purpose_block.get() != "USER" or not key_purpose_block.is_writeable():
344 if efuses[block.key_purpose_name].is_writeable():
363 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s2/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
268 if key_purpose_block.get() != "USER" or not key_purpose_block.is_writeable():
407 if efuses[block.key_purpose_name].is_writeable():
426 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
268 if key_purpose_block.get() != "USER" or not key_purpose_block.is_writeable():
407 if efuses[block.key_purpose_name].is_writeable():
426 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32s3beta2/
Doperations.py265 if not block.is_readable() or not block.is_writeable():
268 if key_purpose_block.get() != "USER" or not key_purpose_block.is_writeable():
407 if efuses[block.key_purpose_name].is_writeable():
426 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dbase_operations.py303 (readable, writeable) = (e.is_readable(), e.is_writeable())
642 if not efuse.is_writeable():
664 if efuse.is_writeable():
769 wr = "writable" if field.is_writeable() else "not writable"
775 wr = "writable" if blk.is_writeable() else "not writable"
Dbase_fields.py122 if not self.parent["RD_DIS"].is_writeable():
129 def is_writeable(self): member in EfuseProtectBase
137 if not self.parent["WR_DIS"].is_writeable():
150 if not self.is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c3/
Doperations.py290 if efuses[block.key_purpose_name].is_writeable():
309 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5/
Doperations.py281 if efuses[block.key_purpose_name].is_writeable():
300 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5beta3/
Doperations.py281 if efuses[block.key_purpose_name].is_writeable():
300 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c6/
Doperations.py297 if efuses[block.key_purpose_name].is_writeable():
316 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32h2beta1/
Doperations.py294 if efuses[block.key_purpose_name].is_writeable():
312 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32h2/
Doperations.py301 if efuses[block.key_purpose_name].is_writeable():
320 if efuses[block.key_purpose_name].is_writeable():
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dexecute-scripts-cmd.rst73 …ding back. To check read and write protection, ``is_readable()`` and ``is_writeable()`` are called.