From 0be44b6cccdc5ac4dbadfd55dc89b5c85b187277 Mon Sep 17 00:00:00 2001 From: gaoxu Date: Fri, 17 May 2024 20:23:15 +0800 Subject: [PATCH] feat(gpio): fix gpio matrix const input addr on C5 MP --- components/soc/esp32c5/mp/include/soc/gpio_pins.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/soc/esp32c5/mp/include/soc/gpio_pins.h b/components/soc/esp32c5/mp/include/soc/gpio_pins.h index c630ae4764..268506ce39 100644 --- a/components/soc/esp32c5/mp/include/soc/gpio_pins.h +++ b/components/soc/esp32c5/mp/include/soc/gpio_pins.h @@ -11,8 +11,8 @@ extern "C" { #endif -#define GPIO_MATRIX_CONST_ONE_INPUT (0x38) -#define GPIO_MATRIX_CONST_ZERO_INPUT (0x3C) +#define GPIO_MATRIX_CONST_ONE_INPUT (0x40) +#define GPIO_MATRIX_CONST_ZERO_INPUT (0x50) #ifdef __cplusplus }