Skip to content

Commit

Permalink
fixup! boards: add support for ESP32 ProS3 board
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Feb 4, 2023
1 parent 9810617 commit 97373d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions boards/esp32s3-pros3/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ config BOARD_ESP32S3_PROS3
select HAS_PERIPH_SPI
select HAS_PERIPH_USBDEV
select HAS_TINYUSB_DEVICE
select MODULE_USB_BOARD_RESET if TEST_KCONFIG && MODULE_STDIO_USB_SERIAL_JTAG

choice STDIO_IMPLEMENTATION
bool "STDIO implementation"
Expand Down
4 changes: 4 additions & 0 deletions boards/esp32s3-pros3/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ ifeq (,$(filter stdio_% slipdev_stdio 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
Expand Down

0 comments on commit 97373d8

Please sign in to comment.