periph_rtc: streamline lpc2387 and cc430 naming

This commit is contained in:
Oleg Hahm 2014-11-25 15:03:54 +01:00
parent 849580a9c9
commit 60cd0d357d
10 changed files with 8 additions and 10 deletions

View File

@ -1 +1 @@
FEATURES_PROVIDED += transceiver FEATURES_PROVIDED += transceiver periph_rtc

View File

@ -1 +1 @@
FEATURES_PROVIDED = transceiver FEATURES_PROVIDED = transceiver periph_rtc

View File

@ -1 +1 @@
FEATURES_PROVIDED += transceiver periph_pwm cpp FEATURES_PROVIDED += transceiver periph_pwm periph_rtc cpp

View File

@ -1,5 +1,5 @@
MODULE = cpu MODULE = cpu
DIRS = $(RIOTCPU)/msp430-common DIRS = $(RIOTCPU)/msp430-common periph
include $(RIOTBASE)/Makefile.base include $(RIOTBASE)/Makefile.base

View File

@ -1,3 +1,5 @@
INCLUDES += -I$(RIOTBASE)/cpu/cc430/include/ INCLUDES += -I$(RIOTBASE)/cpu/cc430/include/
include $(RIOTCPU)/msp430-common/Makefile.include include $(RIOTCPU)/msp430-common/Makefile.include
export USEMODULE += periph

View File

@ -8,8 +8,8 @@
*/ */
/** /**
* @ingroup rtc * @ingroup driver_periph_rtc
* @file cc430-rtc.c * @file
* @brief CC430 real time clock implementation * @brief CC430 real time clock implementation
* @author Oliver Hahm <oliver.hahm@inria.fr> * @author Oliver Hahm <oliver.hahm@inria.fr>
*/ */

View File

@ -10,9 +10,6 @@ endif
ifneq (,$(filter mci,$(USEMODULE))) ifneq (,$(filter mci,$(USEMODULE)))
DIRS += mci DIRS += mci
endif endif
ifneq (,$(filter rtc,$(USEMODULE)))
DIRS += rtc
endif
ifneq (,$(filter i2c,$(USEMODULE))) ifneq (,$(filter i2c,$(USEMODULE)))
DIRS += i2c DIRS += i2c
endif endif

View File

@ -45,7 +45,6 @@ endif
ifneq (,$(filter msba2,$(BOARD))) ifneq (,$(filter msba2,$(BOARD)))
USEMODULE += sht11 USEMODULE += sht11
USEMODULE += ltc4150 USEMODULE += ltc4150
USEMODULE += rtc
USEMODULE += mci USEMODULE += mci
USEMODULE += config USEMODULE += config
USEMODULE += random USEMODULE += random