From 85e803ded451af7c71022ea407af6415404536c2 Mon Sep 17 00:00:00 2001 From: Lou Tianhao Date: Wed, 27 Mar 2024 11:38:04 +0800 Subject: [PATCH] docs(pm): add description for newly added filed in modem_syscon --- components/hal/esp32c5/include/hal/modem_syscon_ll.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/hal/esp32c5/include/hal/modem_syscon_ll.h b/components/hal/esp32c5/include/hal/modem_syscon_ll.h index 7cf686ba03..17cbaa457f 100644 --- a/components/hal/esp32c5/include/hal/modem_syscon_ll.h +++ b/components/hal/esp32c5/include/hal/modem_syscon_ll.h @@ -405,18 +405,21 @@ static inline void modem_syscon_ll_enable_fe_apb_clock(modem_syscon_dev_t *hw, b hw->clk_conf1.clk_fe_apb_en = en; } +// The modem_syscon of esp32c5beta3 adds the enablement of the adc clock on the analog front end compared to esp32h2 and esp32c6. __attribute__((always_inline)) static inline void modem_syscon_ll_enable_fe_adc_clock(modem_syscon_dev_t *hw, bool en) { hw->clk_conf1.clk_fe_adc_en = en; } +// The modem_syscon of esp32c5beta3 adds the enablement of the dac clock on the analog front end compared to esp32h2 and esp32c6. __attribute__((always_inline)) static inline void modem_syscon_ll_enable_fe_dac_clock(modem_syscon_dev_t *hw, bool en) { hw->clk_conf1.clk_fe_dac_en = en; } +// The modem_syscon of esp32c5beta3 adds the enablement of the analog power detect clock on the analog front end compared to esp32h2 and esp32c6. __attribute__((always_inline)) static inline void modem_syscon_ll_enable_fe_pwdet_clock(modem_syscon_dev_t *hw, bool en) {