Move samples config files from 'boards' to 'socs' in order to remove multiple files with the same configuration and render available samples for new boards. Only changed sample files which are not board or hardware specific. Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
31 lines
483 B
Text
31 lines
483 B
Text
/*
|
|
* Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&pinctrl {
|
|
uart1_test: uart1_test {
|
|
group1 {
|
|
pinmux = <UART1_TX_GPIO5>;
|
|
input-enable;
|
|
};
|
|
group2 {
|
|
pinmux = <UART1_RX_GPIO5>;
|
|
output-enable;
|
|
};
|
|
};
|
|
};
|
|
|
|
dut: &uart1 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&uart1_test>;
|
|
pinctrl-names = "default";
|
|
dmas = <&dma 0>, <&dma 1>;
|
|
dma-names = "rx", "tx";
|
|
};
|
|
|
|
&dma {
|
|
status = "okay";
|
|
};
|