File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
tests/drivers/uart/uart_basic_api Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- CONFIG_USB_DEVICE_STACK=y
2
- CONFIG_USB_DEVICE_PRODUCT="Zephyr CDC ACM UART"
1
+ CONFIG_USB_DEVICE_STACK_NEXT=y
2
+ CONFIG_CDC_ACM_SERIAL_INITIALIZE_AT_BOOT=y
3
+ CONFIG_CDC_ACM_SERIAL_PRODUCT_STRING="Zephyr CDC ACM UART"
3
4
CONFIG_UART_LINE_CTRL=y
4
5
CONFIG_TEST_LOGGING_DEFAULTS=n
Original file line number Diff line number Diff line change 11
11
* @}
12
12
*/
13
13
14
- #include <zephyr/usb/usb_device.h>
15
14
#include "test_uart.h"
16
15
17
16
#ifdef CONFIG_SHELL
@@ -52,7 +51,7 @@ void *uart_basic_setup(void)
52
51
uint32_t dtr = 0 ;
53
52
54
53
dev = DEVICE_DT_GET (DT_CHOSEN (zephyr_console ));
55
- if (!device_is_ready (dev ) || usb_enable ( NULL ) ) {
54
+ if (!device_is_ready (dev )) {
56
55
return NULL ;
57
56
}
58
57
Original file line number Diff line number Diff line change 47
47
- drivers
48
48
- usb
49
49
filter : CONFIG_UART_CONSOLE
50
- depends_on : usb_device
50
+ depends_on : usbd
51
51
harness : keyboard
52
52
drivers.uart.basic_api.shell_ke17z9_uart :
53
53
tags :
You can’t perform that action at this time.
0 commit comments