1 /* 2 * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdint.h> 8 bootloader_common_get_chip_revision(void)9uint8_t bootloader_common_get_chip_revision(void) 10 { 11 // should return the same value as esp_efuse_get_chip_ver() 12 /* No other revisions for ESP32-S3 */ 13 return 0; 14 } 15 bootloader_common_get_chip_ver_pkg(void)16uint32_t bootloader_common_get_chip_ver_pkg(void) 17 { 18 // should return the same value as esp_efuse_get_pkg_ver() 19 return 0; 20 } 21