24 lines
458 B
Plaintext
24 lines
458 B
Plaintext
/*
|
|
* Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h>
|
|
#include <dt-bindings/pinctrl/esp32c2-pinctrl.h>
|
|
#include <zephyr/dt-bindings/pinctrl/esp32c2-gpio-sigmap.h>
|
|
|
|
&pinctrl {
|
|
|
|
uart0_default: uart0_default {
|
|
group1 {
|
|
pinmux = <UART0_TX_GPIO20>;
|
|
output-high;
|
|
};
|
|
group2 {
|
|
pinmux = <UART0_RX_GPIO19>;
|
|
bias-pull-up;
|
|
};
|
|
};
|
|
};
|