mirror of
https://github.com/apache/nuttx.git
synced 2026-05-20 04:16:35 +08:00
risc-v/esp32c3: Fix default GPIO function when no option is provided
This commit is contained in:
committed by
Xiang Xiao
parent
bc335009d9
commit
b1b4190802
@@ -159,8 +159,8 @@ int esp32c3_configgpio(int pin, gpio_pinattr_t attr)
|
||||
|
||||
func |= (uint32_t)(2ul << FUN_DRV_S);
|
||||
|
||||
/* Select the pad's function. If no function was given, consider it a
|
||||
* normal input or output (i.e. function3).
|
||||
/* Select the pad's function. If no function was given, consider it a
|
||||
* normal input or output (i.e. function1).
|
||||
*/
|
||||
|
||||
if ((attr & FUNCTION_MASK) != 0)
|
||||
@@ -169,12 +169,12 @@ int esp32c3_configgpio(int pin, gpio_pinattr_t attr)
|
||||
}
|
||||
else
|
||||
{
|
||||
func |= (uint32_t)((2 >> FUNCTION_SHIFT) << MCU_SEL_S);
|
||||
func |= (uint32_t)(PIN_FUNC_GPIO << MCU_SEL_S);
|
||||
}
|
||||
|
||||
if ((attr & OPEN_DRAIN) != 0)
|
||||
{
|
||||
cntrl = (1 << GPIO_PIN_PAD_DRIVER_S);
|
||||
cntrl |= (1 << GPIO_PIN_PAD_DRIVER_S);
|
||||
}
|
||||
|
||||
/* Set the pin function to its register */
|
||||
|
||||
Reference in New Issue
Block a user