mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
c7f6d53773
This module implements the 2 functions called when requesting a board 'reset in application' and 'board reset in bootloader' actions. This module will also configure the behaviour of bossa flasher and has a dependency on USBUS CDC ACM module for providing STDIO over USB
14 lines
436 B
Makefile
14 lines
436 B
Makefile
# Provide stdio over USB by default
|
|
# This is a temporary solution until management of stdio is correctly
|
|
# handled by the build system
|
|
DEFAULT_MODULE += stdio_cdc_acm
|
|
|
|
# Default auto-initialization of usbus for stdio other USB
|
|
USEMODULE += auto_init_usbus
|
|
|
|
# This boards requires support for Arduino bootloader.
|
|
USEMODULE += usb_board_reset
|
|
USEMODULE += boards_common_samd21-arduino-bootloader
|
|
|
|
FEATURES_REQUIRED += bootloader_arduino
|