mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cce395da89
This matches the behavior when KConfig is used.
19 lines
765 B
Makefile
19 lines
765 B
Makefile
ifeq (,$(filter stdio_% slipdev_stdio usbus usbus% tinyusb_device,$(USEMODULE)))
|
|
# Use stdio_usb_serial_jtag if no other stdio is requested explicitly
|
|
# and neither USBUS nor tinyusb_device are used
|
|
USEMODULE += stdio_usb_serial_jtag
|
|
# Even if only stdio_usb_serial_jtag is enabled, usb_board_reset is enabled
|
|
# since there should be a CDC ACM interface in any case. This is necessary,
|
|
# for example, to reset the board if stdio_cdc_acm or stdio_tinyusb_cdc_acm
|
|
# was previously used.
|
|
USEMODULE += usb_board_reset
|
|
# include $(RIOTMAKE)/tools/usb_board_reset.mk
|
|
endif
|
|
|
|
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
USEMODULE += ili9341
|
|
endif
|
|
|
|
include $(RIOTBOARD)/common/esp32s3/Makefile.dep
|
|
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|