1 /** 2 * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #pragma once 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 #define EFUSE_WRITE_OP_CODE 0x5a5a 13 #define EFUSE_READ_OP_CODE 0x5aa5 14 15 #ifdef __cplusplus 16 } 17 #endif 18