fix(pcnt): a typo in the PCNT_LL_MIN_LIM

Closes https://github.com/espressif/esp-idf/issues/15554
This commit is contained in:
morris
2025-03-11 22:07:45 +08:00
parent 7c5b34f568
commit 09f5bc736b
8 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ extern "C" {
#define PCNT_LL_GET_HW(num) (((num) == 0) ? (&PCNT) : NULL)
#define PCNT_LL_MAX_GLITCH_WIDTH 1023
#define PCNT_LL_MAX_LIM SHRT_MAX
#define PCNT_LL_MIN_LIN SHRT_MIN
#define PCNT_LL_MIN_LIM SHRT_MIN
typedef enum {
PCNT_LL_WATCH_EVENT_INVALID = -1,