]> granicus.if.org Git - esp-idf/commitdiff
Add missing bit from LEDC interrupt state struct.
authorDermot Duffy <dermot.duffy@gmail.com>
Sat, 31 Dec 2016 01:09:54 +0000 (01:09 +0000)
committerAngus Gratton <angus@espressif.com>
Fri, 20 Jan 2017 03:57:24 +0000 (14:57 +1100)
Resolves #191 https://github.com/espressif/esp-idf/pull/191

components/esp32/include/soc/ledc_struct.h

index d119289acdd3d1aecc19c125da4b506b64705ba2..c52f670770a85e3e644bdc7567c7a2e830c0c2da 100644 (file)
@@ -122,6 +122,7 @@ typedef volatile struct {
             uint32_t lstimer1_ovf:        1;            /*The interrupt status bit for low speed channel1  counter overflow event.*/
             uint32_t lstimer2_ovf:        1;            /*The interrupt status bit for low speed channel2  counter overflow event.*/
             uint32_t lstimer3_ovf:        1;            /*The interrupt status bit for low speed channel3  counter overflow event.*/
+            uint32_t duty_chng_end_hsch0: 1;            /*The interrupt enable bit for high speed channel 0 duty change done event.*/
             uint32_t duty_chng_end_hsch1: 1;            /*The interrupt status bit for high speed channel 1 duty change done event.*/
             uint32_t duty_chng_end_hsch2: 1;            /*The interrupt status bit for high speed channel 2 duty change done event.*/
             uint32_t duty_chng_end_hsch3: 1;            /*The interrupt status bit for high speed channel 3 duty change done event.*/