sdkconfig.defaults 862 B

1234567891011121314151617181920212223
  1. # Set flash configuration as fast as possible (Quad I/O 80MHz)
  2. #
  3. # (Not all hardware may support this configuration.)
  4. CONFIG_ESPTOOLPY_FLASHMODE_QIO=y
  5. CONFIG_ESPTOOLPY_FLASHFREQ_80M=y
  6. # These two settings mean that no logs are printed
  7. # during startup, but it's possible to use esp_log_level_set("*", ESP_LOG_INFO)
  8. # at runtime to get Info-level logging back
  9. CONFIG_LOG_DEFAULT_LEVEL_WARN=y
  10. CONFIG_LOG_MAXIMUM_LEVEL_INFO=y
  11. CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
  12. # at risk of not detecting flash corruption, skip bootloader
  13. # verification of the app unless a soft reset or crash happened
  14. #
  15. # note: the larger the application, the bigger the time saved by
  16. # from this option
  17. CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON=y
  18. # Setting option to zero is only recommended if not using sleep modes, or
  19. # if you don't need accurate sleep times.
  20. CONFIG_RTC_CLK_CAL_CYCLES=0