2023-07-27 15:10:50 +08:00
|
|
|
/*
|
2025-05-30 17:13:59 +03:00
|
|
|
* SPDX-FileCopyrightText: 2017-2025 Espressif Systems (Shanghai) CO LTD
|
2023-07-27 15:10:50 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-08-28 19:07:39 +03:00
|
|
|
#include "sdkconfig.h"
|
2023-07-27 15:10:50 +08:00
|
|
|
|
2026-01-18 04:30:46 +08:00
|
|
|
#if !CONFIG_ESP32P4_SELECTS_REV_LESS_V3
|
2025-08-28 19:07:39 +03:00
|
|
|
#include "esp_efuse_table_v3.0.h"
|
|
|
|
|
#else
|
|
|
|
|
#include "esp_efuse_table_v0.0_v2.0.h"
|
|
|
|
|
#endif
|
2023-07-27 15:10:50 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|