mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	Merge branch 'bugfix/fix_bit_error_in_ledc_struct_backport_v4.3' into 'release/v4.3'
LEDC: fix bit error in ledc_struct.h(backport v4.3) See merge request espressif/esp-idf!14162
This commit is contained in:
		@@ -30,8 +30,7 @@ typedef volatile struct ledc_dev_s {
 | 
			
		||||
                    uint32_t ovf_cnt_en: 1;
 | 
			
		||||
                    uint32_t ovf_cnt_rst: 1;
 | 
			
		||||
                    uint32_t ovf_cnt_rst_st: 1;
 | 
			
		||||
                    uint32_t reserved18: 13;
 | 
			
		||||
                    uint32_t clk_en:     1;              /*This bit is clock gating control signal. when software configure LED_PWM internal registers  it controls the register clock.*/
 | 
			
		||||
                    uint32_t reserved18: 14;
 | 
			
		||||
                };
 | 
			
		||||
                uint32_t val;
 | 
			
		||||
            } conf0;
 | 
			
		||||
@@ -198,7 +197,8 @@ typedef volatile struct ledc_dev_s {
 | 
			
		||||
    union {
 | 
			
		||||
        struct {
 | 
			
		||||
            uint32_t apb_clk_sel: 2; // 0:invalid; 1:80MHz APB clock; 2:8MHz RTC clock; 3:XTAL clock
 | 
			
		||||
            uint32_t reserved2:  30;
 | 
			
		||||
            uint32_t reserved2:  29;
 | 
			
		||||
            uint32_t clk_en:      1; /*This bit is clock gating control signal. when software configure LED_PWM internal registers  it controls the register clock.*/
 | 
			
		||||
        };
 | 
			
		||||
        uint32_t val;
 | 
			
		||||
    } conf;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user