From f676096b56f149fe7b6488ecfee23212289feb9f Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Wed, 26 Oct 2022 16:41:49 +0200 Subject: [PATCH] tests/pkg_tinyusb_cdc_acm_stdio: add test for stdio via CDC ACM --- tests/pkg_tinyusb_cdc_acm_stdio/Makefile | 12 ++++++++++++ tests/pkg_tinyusb_cdc_acm_stdio/main.c | 1 + 2 files changed, 13 insertions(+) create mode 100644 tests/pkg_tinyusb_cdc_acm_stdio/Makefile create mode 120000 tests/pkg_tinyusb_cdc_acm_stdio/main.c diff --git a/tests/pkg_tinyusb_cdc_acm_stdio/Makefile b/tests/pkg_tinyusb_cdc_acm_stdio/Makefile new file mode 100644 index 000000000000..a14b018016b8 --- /dev/null +++ b/tests/pkg_tinyusb_cdc_acm_stdio/Makefile @@ -0,0 +1,12 @@ +include ../Makefile.tests_common + +USB_VID ?= $(USB_VID_TESTING) +USB_PID ?= $(USB_PID_TESTING) + +USEMODULE += stdio_tinyusb_cdc_acm + +USEMODULE += shell +USEMODULE += shell_commands +USEMODULE += ps + +include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_tinyusb_cdc_acm_stdio/main.c b/tests/pkg_tinyusb_cdc_acm_stdio/main.c new file mode 120000 index 000000000000..121c7ff68ea3 --- /dev/null +++ b/tests/pkg_tinyusb_cdc_acm_stdio/main.c @@ -0,0 +1 @@ +../usbus_cdc_acm_stdio/main.c \ No newline at end of file