2022-05-25 15:16:15 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include "soc/soc_caps.h"
|
|
|
|
#include "hal/assert.h"
|
|
|
|
#include "hal/efuse_hal.h"
|
|
|
|
#include "hal/efuse_ll.h"
|
2022-03-17 09:58:15 -04:00
|
|
|
#include "esp_attr.h"
|
2022-05-25 15:16:15 -04:00
|
|
|
|
2022-03-17 09:58:15 -04:00
|
|
|
IRAM_ATTR uint32_t efuse_hal_get_major_chip_version(void)
|
2022-05-25 15:16:15 -04:00
|
|
|
{
|
|
|
|
return efuse_ll_get_chip_wafer_version_major();
|
|
|
|
}
|
|
|
|
|
2022-03-17 09:58:15 -04:00
|
|
|
IRAM_ATTR uint32_t efuse_hal_get_minor_chip_version(void)
|
2022-05-25 15:16:15 -04:00
|
|
|
{
|
|
|
|
return efuse_ll_get_chip_wafer_version_minor();
|
|
|
|
}
|