1 /*
2  * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 #define COUNT_EFUSE_REG_PER_BLOCK 8      /* The number of registers per block. */
14 
15 #define ESP_EFUSE_SECURE_VERSION_NUM_BLOCK EFUSE_BLK0
16 
17 #define ESP_EFUSE_FIELD_CORRESPONDS_CODING_SCHEME(scheme, max_num_bit)
18 
19 #ifdef __cplusplus
20 }
21 #endif
22