File tree Expand file tree Collapse file tree 3 files changed +35
-1
lines changed
tests/drivers/uart/uart_async_api Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ CONFIG_HEAP_MEM_POOL_SIZE=32768
2
+ CONFIG_DMA=y
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ &pinctrl {
8
+
9
+ uart1_test: uart1_test {
10
+ group1 {
11
+ pinmux = <UART1_TX_GPIO5>;
12
+ };
13
+ group2 {
14
+ pinmux = <UART1_RX_GPIO6>;
15
+ bias-pull-up;
16
+ };
17
+ };
18
+ };
19
+
20
+ &uart1 {
21
+ status = "okay";
22
+ current-speed = <115200>;
23
+ pinctrl-0 = <&uart1_test>;
24
+ pinctrl-names = "default";
25
+ dmas = <&dma 0>, <&dma 1>;
26
+ dma-names = "rx", "tx";
27
+ };
28
+
29
+ &dma {
30
+ status = "okay";
31
+ };
Original file line number Diff line number Diff line change 2
2
platform_exclude : seeeduino_xiao serpente arduino_nano_33_iot atsamr21_xpro
3
3
adafruit_itsybitsy_m4_express atsame54_xpro atsamd21_xpro adafruit_trinket_m0
4
4
arduino_nano_33_iot arduino_zero atsamd21_xpro adafruit_feather_m0_basic_proto
5
- adafruit_feather_m0_lora arduino_mkrzero atsaml21_xpro atsamr34_xpro
5
+ adafruit_feather_m0_lora arduino_mkrzero atsaml21_xpro atsamr34_xpro stamp_c3
6
+ xiao_esp32c3
6
7
tags : drivers uart
7
8
tests :
8
9
drivers.uart.async_api :
You can’t perform that action at this time.
0 commit comments