mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 19:48:33 +08:00
esp32[c6]: Fix misconfigured pin functions for esp32c6-devkitm
This commit is contained in:
parent
b2735751d1
commit
af6147fb2c
1 changed files with 2 additions and 2 deletions
|
@ -484,7 +484,7 @@ int esp_gpio_init(void)
|
|||
/* Configure the pins that will be used as output */
|
||||
|
||||
esp_gpio_matrix_out(g_gpiooutputs[i], SIG_GPIO_OUT_IDX, 0, 0);
|
||||
esp_configgpio(g_gpiooutputs[i], OUTPUT_FUNCTION_1 | INPUT_FUNCTION_1);
|
||||
esp_configgpio(g_gpiooutputs[i], OUTPUT_FUNCTION_2 | INPUT_FUNCTION_2);
|
||||
esp_gpiowrite(g_gpiooutputs[i], 0);
|
||||
|
||||
pincount++;
|
||||
|
@ -503,7 +503,7 @@ int esp_gpio_init(void)
|
|||
|
||||
/* Configure the pins that will be used as interrupt input */
|
||||
|
||||
esp_configgpio(g_gpiointinputs[i], INPUT_FUNCTION_1 | PULLDOWN);
|
||||
esp_configgpio(g_gpiointinputs[i], INPUT_FUNCTION_2 | PULLDOWN);
|
||||
|
||||
pincount++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue