bootloader_random_esp8684.c 467 B

1234567891011121314151617181920212223
  1. /*
  2. * SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include "sdkconfig.h"
  7. #include "bootloader_random.h"
  8. #include "esp_log.h"
  9. #include "soc/syscon_reg.h"
  10. #include "soc/rtc_cntl_reg.h"
  11. #include "soc/apb_saradc_reg.h"
  12. #include "soc/system_reg.h"
  13. #include "regi2c_ctrl.h"
  14. void bootloader_random_enable(void)
  15. {
  16. // TODO: IDF-4021
  17. }
  18. void bootloader_random_disable(void)
  19. {
  20. // TODO: IDF-4021
  21. }