]> granicus.if.org Git - esp-idf/commitdiff
Fix comment in the header
authorme-no-dev <hristo@espressif.com>
Tue, 6 Dec 2016 00:10:35 +0000 (02:10 +0200)
committerme-no-dev <hristo@espressif.com>
Tue, 6 Dec 2016 00:10:35 +0000 (02:10 +0200)
components/driver/include/driver/pcnt.h

index 7cc7843977fdb413a0f4ffa7a42e97a976779d77..d2620cf15ee65d403ac4a16f882e596a07328027 100644 (file)
@@ -27,9 +27,9 @@ typedef enum {
 } pcnt_ctrl_mode_t;
 
 typedef enum {
-    PCNT_COUNT_DIS = 0,            /*!< Counter mode: Decrease counter value*/
+    PCNT_COUNT_DIS = 0,            /*!< Counter mode: Inhibit counter(counter value will not change in this condition)*/
     PCNT_COUNT_INC = 1,            /*!< Counter mode: Increase counter value*/
-    PCNT_COUNT_DEC = 2,            /*!< Counter mode: Inhibit counter(counter value will not change in this condition)*/
+    PCNT_COUNT_DEC = 2,            /*!< Counter mode: Decrease counter value*/
     PCNT_COUNT_MAX
 } pcnt_count_mode_t;