mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #14952 from benpicco/boards/common/cdc_acm
boards: factorize stdio CDC ACM configuration
This commit is contained in:
commit
823774358e
@ -6,13 +6,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += sht3x
|
||||
endif
|
||||
|
||||
# use nrfutil-bootloader/stdio_cdc_acm only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
USEMODULE += usb_board_reset
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
|
||||
# include common nrf52 dependencies
|
||||
include $(RIOTBOARD)/common/nrf52/bootloader_nrfutil.dep.mk
|
||||
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|
||||
|
@ -2,15 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
# Use stdio_cdc_acm only if no other stdio is requested explicitly.
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
|
||||
# enable bootloader reset over USB, requires USB bootloader to be used
|
||||
ifneq (,$(filter stdio_cdc_acm,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
USEMODULE += usb_board_reset
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/common/nrf52/bootloader_nrfutil.dep.mk
|
||||
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|
||||
|
@ -2,16 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
# Provide stdio over USB by default
|
||||
USEMODULE += stdio_cdc_acm
|
||||
|
||||
# This board requires support for Arduino bootloader.
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
USEMODULE += usb_board_reset
|
||||
endif
|
||||
|
||||
# include common nrf52 dependencies
|
||||
include $(RIOTBOARD)/common/nrf52/bootloader_nrfutil.dep.mk
|
||||
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|
||||
|
@ -2,13 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
endif
|
||||
|
||||
ifneq (,$(filter boards_common_samd21-arduino-bootloader,$(USEMODULE)))
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
endif
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
|
5
boards/common/makefiles/stdio_cdc_acm.dep.mk
Normal file
5
boards/common/makefiles/stdio_cdc_acm.dep.mk
Normal file
@ -0,0 +1,5 @@
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
# Use stdio_cdc_acm only if no other stdio is requested explicitly.
|
||||
USEMODULE += stdio_cdc_acm
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
endif
|
6
boards/common/nrf52/bootloader_nrfutil.dep.mk
Normal file
6
boards/common/nrf52/bootloader_nrfutil.dep.mk
Normal file
@ -0,0 +1,6 @@
|
||||
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|
||||
|
||||
# enable bootloader reset over USB, requires CDC ACM to be used
|
||||
ifneq (,$(filter stdio_cdc_acm,$(USEMODULE)))
|
||||
USEMODULE += usb_board_reset
|
||||
endif
|
@ -1,5 +1,7 @@
|
||||
# This boards requires support for Arduino bootloader.
|
||||
USEMODULE += usb_board_reset
|
||||
USEMODULE += stdio_cdc_acm
|
||||
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|
||||
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
# USB Board reset only works if CDC ACM is used
|
||||
ifneq (,$(filter stdio_cdc_acm,$(USEMODULE)))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
USEMODULE += usb_board_reset
|
||||
endif
|
||||
|
@ -2,13 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
endif
|
||||
|
||||
ifneq (,$(filter boards_common_samd21-arduino-bootloader,$(USEMODULE)))
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
endif
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
|
@ -2,13 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
endif
|
||||
|
||||
ifneq (,$(filter boards_common_samd21-arduino-bootloader,$(USEMODULE)))
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
endif
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
|
@ -2,15 +2,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
|
||||
# Use stdio_cdc_acm only if no other stdio is requested explicitly.
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
|
||||
# enable bootloader reset over USB, requires USB bootloader to be used
|
||||
ifneq (,$(filter stdio_cdc_acm,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += highlevel_stdio
|
||||
USEMODULE += usb_board_reset
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/common/nrf52/bootloader_nrfutil.dep.mk
|
||||
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|
||||
|
@ -6,13 +6,5 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_%,$(USEMODULE))))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
endif
|
||||
|
||||
ifneq (,$(filter boards_common_samd21-arduino-bootloader,$(USEMODULE)))
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
endif
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
|
@ -1,5 +1,2 @@
|
||||
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|
||||
include $(RIOTBOARD)/stm32f429i-disc1/Makefile.dep
|
||||
|
@ -2,9 +2,7 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|
||||
|
||||
ifneq (,$(filter stdio_cdc_acm,$(USEMODULE)))
|
||||
# The Mask-ROM bootloader provides USB-DFU capability
|
||||
|
@ -1,12 +1,4 @@
|
||||
include $(RIOTBOARD)/common/arduino-zero/Makefile.dep
|
||||
|
||||
# use arduino-bootloader only if no other stdio_% other than stdio_cdc_acm
|
||||
# is requested
|
||||
ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_%,$(USEMODULE))))
|
||||
USEMODULE += boards_common_samd21-arduino-bootloader
|
||||
endif
|
||||
|
||||
ifneq (,$(filter boards_common_samd21-arduino-bootloader,$(USEMODULE)))
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
endif
|
||||
# setup the samd21 arduino bootloader related dependencies
|
||||
include $(RIOTBOARD)/common/samd21-arduino-bootloader/Makefile.dep
|
||||
|
@ -1,3 +1 @@
|
||||
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
|
||||
USEMODULE += stdio_cdc_acm
|
||||
endif
|
||||
include $(RIOTBOARD)/common/makefiles/stdio_cdc_acm.dep.mk
|
||||
|
Loading…
Reference in New Issue
Block a user