Searched refs:ESP_EFUSE_BLOCK_ERROR_BITS (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/hal/esp32c2/ |
D | efuse_hal.c | 16 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x0F << (4 * (block)))) macro 88 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block - 1) != 0; in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32h2/ |
D | efuse_hal.c | 14 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x08 << (4 * (block)))) macro 96 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block % 8) != 0; in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32c6/ |
D | efuse_hal.c | 14 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x08 << (4 * (block)))) macro 96 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block % 8) != 0; in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32c3/ |
D | efuse_hal.c | 15 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x08 << (4 * (block)))) macro 95 …return (ESP_EFUSE_BLOCK_ERROR_BITS(err_fail_reg, block % 8) != 0) || (ESP_EFUSE_BLOCK_ERROR_NUM_BI… in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32s3/ |
D | efuse_hal.c | 16 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x0F << (4 * (block)))) macro 109 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block % 8) != 0; in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32s2/ |
D | efuse_hal.c | 16 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x0F << (4 * (block)))) macro 123 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block % 8) != 0; in efuse_hal_is_coding_error_in_block()
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | efuse_ll.h | 18 #define ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block) ((error_reg) & (0x0F << (4 * (block)))) macro 183 return ESP_EFUSE_BLOCK_ERROR_BITS(error_reg, block - 1) != 0; in efuse_ll_get_dec_warnings()
|