2021-05-09 22:35:07 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-07-29 10:03:46 -04:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
uint8_t bootloader_common_get_chip_revision(void)
|
|
|
|
{
|
2020-09-17 05:04:01 -04:00
|
|
|
// should return the same value as esp_efuse_get_chip_ver()
|
2020-07-29 10:03:46 -04:00
|
|
|
/* No other revisions for ESP32-S3 */
|
|
|
|
return 0;
|
|
|
|
}
|
2020-09-17 05:04:01 -04:00
|
|
|
|
|
|
|
uint32_t bootloader_common_get_chip_ver_pkg(void)
|
|
|
|
{
|
|
|
|
// should return the same value as esp_efuse_get_pkg_ver()
|
|
|
|
return 0;
|
2020-11-10 02:40:01 -05:00
|
|
|
}
|