mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
18 lines
271 B
C
18 lines
271 B
C
/**
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define EFUSE_WRITE_OP_CODE 0x5a5a
|
|
#define EFUSE_READ_OP_CODE 0x5aa5
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|