efuse: Adds support for esp32-s2 chip

This commit is contained in:
KonstantinKondrashov
2020-09-17 17:04:01 +08:00
parent a16152a78e
commit 66b9b589cb
15 changed files with 3555 additions and 298 deletions

View File

@@ -16,6 +16,13 @@
uint8_t bootloader_common_get_chip_revision(void)
{
// should return the same value as esp_efuse_get_chip_ver()
/* No other revisions for ESP32-S3 */
return 0;
}
uint32_t bootloader_common_get_chip_ver_pkg(void)
{
// should return the same value as esp_efuse_get_pkg_ver()
return 0;
}