1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 19:32:19 +01:00

ledc: check SOC_LEDC_SUPPORT_APB_CLOCK (#5212)

This commit is contained in:
Stijn Tintel
2023-08-08 02:47:57 +03:00
committed by GitHub
parent 1d5f088740
commit ffd2cb9814

View File

@@ -17,7 +17,11 @@
#define CLOCK_FREQUENCY 40e6f #define CLOCK_FREQUENCY 40e6f
#endif #endif
#else #else
#ifdef SOC_LEDC_SUPPORT_APB_CLOCK
#define DEFAULT_CLK LEDC_USE_APB_CLK #define DEFAULT_CLK LEDC_USE_APB_CLK
#else
#define DEFAULT_CLK LEDC_AUTO_CLK
#endif
#endif #endif
static const uint8_t SETUP_ATTEMPT_COUNT_MAX = 5; static const uint8_t SETUP_ATTEMPT_COUNT_MAX = 5;