From 3cd9cb891123cd63669d9d21aa774358d7a6f5a1 Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Tue, 6 Dec 2016 02:10:35 +0200 Subject: [PATCH] Fix comment in the header --- components/driver/include/driver/pcnt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/driver/include/driver/pcnt.h b/components/driver/include/driver/pcnt.h index 7cc784397..d2620cf15 100644 --- a/components/driver/include/driver/pcnt.h +++ b/components/driver/include/driver/pcnt.h @@ -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;