mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 16:40:19 +00:00
Add support for board esp8684_devkitm Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
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;
|
|
};
|
|
};
|
|
};
|