Browse Source
This change allows drivers (or any module for that matter) to provide features. This is e.g. useful if a board does not have a transceiver, but your application uses `USEMODULE += some_driver`, which implements the transceiver interface. The line `FEATURES_PROVIDED += some_feature` should go to the guarded block in `{sys,drivers}/Makefile.include`.dev/timer

26 changed files with 31 additions and 29 deletions
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_spi periph_random
|
||||
FEATURES_PROVIDED += periph_gpio periph_spi periph_random
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED =
|
||||
FEATURES_PROVIDED +=
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_random periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio periph_random periph_cpuid
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver periph_gpio periph_uart periph_spi periph_i2c periph_rtt
|
||||
FEATURES_PROVIDED += transceiver periph_gpio periph_uart periph_spi periph_i2c periph_rtt
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver periph_pwm
|
||||
FEATURES_PROVIDED += transceiver periph_pwm
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio
|
||||
FEATURES_PROVIDED += periph_gpio
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver periph_cpuid
|
||||
FEATURES_PROVIDED += transceiver periph_cpuid
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_random periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio periph_random periph_cpuid
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_random periph_rtt periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio periph_random periph_rtt periph_cpuid
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_random periph_rtt periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio periph_random periph_rtt periph_cpuid
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Enable this after fixing https://github.com/RIOT-OS/RIOT/issues/659
|
||||
#FEATURES_PROVIDED = transceiver
|
||||
#FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio
|
||||
FEATURES_PROVIDED += periph_gpio
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_spi
|
||||
FEATURES_PROVIDED += periph_gpio periph_spi
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio
|
||||
FEATURES_PROVIDED += periph_gpio
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_spi periph_pwm periph_random
|
||||
FEATURES_PROVIDED += periph_gpio periph_spi periph_pwm periph_random
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio
|
||||
FEATURES_PROVIDED += periph_gpio
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = transceiver
|
||||
FEATURES_PROVIDED += transceiver
|
||||
|
@ -1 +1 @@
|
||||
FEATURES_PROVIDED = periph_gpio periph_random periph_rtt periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio periph_random periph_rtt periph_cpuid
|
||||
|
Loading…
Reference in new issue