bootloader_efuse_esp32s3.c 450 B

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