mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 22:48:10 +01:00
ledc: check SOC_LEDC_SUPPORT_APB_CLOCK (#5212)
This commit is contained in:
parent
1d5f088740
commit
ffd2cb9814
1 changed files with 4 additions and 0 deletions
|
@ -17,7 +17,11 @@
|
|||
#define CLOCK_FREQUENCY 40e6f
|
||||
#endif
|
||||
#else
|
||||
#ifdef SOC_LEDC_SUPPORT_APB_CLOCK
|
||||
#define DEFAULT_CLK LEDC_USE_APB_CLK
|
||||
#else
|
||||
#define DEFAULT_CLK LEDC_AUTO_CLK
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static const uint8_t SETUP_ATTEMPT_COUNT_MAX = 5;
|
||||
|
|
Loading…
Reference in a new issue