Skip to content

Commit

Permalink
Merge pull request #8058 from haukepetersen/opt_boards_usecommon
Browse files Browse the repository at this point in the history
boards: move shared code to boards/common/xx
  • Loading branch information
cladmi authored Nov 30, 2017
2 parents 5f5cdd1 + a1d5e0f commit da24cda
Show file tree
Hide file tree
Showing 283 changed files with 213 additions and 212 deletions.
2 changes: 1 addition & 1 deletion boards/arduino-duemilanove/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/arduino-atmega-common
DIRS = $(RIOTBOARD)/common/arduino-atmega

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/arduino-duemilanove/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/arduino-atmega-common/Makefile.features
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega328p/Makefile.features
4 changes: 2 additions & 2 deletions boards/arduino-duemilanove/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# define the cpu used by the ardudino duemilanove board
export CPU = atmega328p

USEMODULE += arduino-atmega-common
USEMODULE += boards_common_arduino-atmega

#export needed for flash rule
export PORT_LINUX ?= /dev/ttyUSB0
Expand All @@ -14,4 +14,4 @@ export FFLAGS += -p m328p
# overridden for debugging (which requires changes that require to use an ISP)
export PROGRAMMER ?= arduino

include $(RIOTBOARD)/arduino-atmega-common/Makefile.include
include $(RIOTBOARD)/common/arduino-atmega/Makefile.include
2 changes: 1 addition & 1 deletion boards/arduino-mega2560/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/arduino-atmega-common
DIRS = $(RIOTBOARD)/common/arduino-atmega

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/arduino-mega2560/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/arduino-atmega-common/Makefile.features
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega2560/Makefile.features
4 changes: 2 additions & 2 deletions boards/arduino-mega2560/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# define the cpu used by the arduino mega2560 board
export CPU = atmega2560

USEMODULE += arduino-atmega-common
USEMODULE += boards_common_arduino-atmega

#export needed for flash rule
export PORT_LINUX ?= /dev/ttyACM0
Expand All @@ -14,4 +14,4 @@ export FFLAGS += -p m2560
# overridden for debugging (which requires changes that require to use an ISP)
export PROGRAMMER ?= stk500v2

include $(RIOTBOARD)/arduino-atmega-common/Makefile.include
include $(RIOTBOARD)/common/arduino-atmega/Makefile.include
2 changes: 1 addition & 1 deletion boards/arduino-mkr1000/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/arduino-mkr-common
DIRS = $(RIOTBOARD)/common/arduino-mkr

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/arduino-mkr1000/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include $(RIOTBOARD)/arduino-mkr-common/Makefile.dep
include $(RIOTBOARD)/common/arduino-mkr/Makefile.dep
2 changes: 1 addition & 1 deletion boards/arduino-mkr1000/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/arduino-mkr-common/Makefile.features
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features

-include $(RIOTCPU)/samd21/Makefile.features
4 changes: 2 additions & 2 deletions boards/arduino-mkr1000/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
USEMODULE += arduino-mkr-common
USEMODULE += boards_common_arduino-mkr

ifeq ($(PROGRAMMER),jlink)
export MKR_JLINK_DEVICE = atsamw25
endif

include $(RIOTBOARD)/arduino-mkr-common/Makefile.include
include $(RIOTBOARD)/common/arduino-mkr/Makefile.include

# add arduino-mkr1000 include path
INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
2 changes: 1 addition & 1 deletion boards/arduino-mkrzero/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/arduino-mkr-common
DIRS = $(RIOTBOARD)/common/arduino-mkr

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/arduino-mkrzero/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include $(RIOTBOARD)/arduino-mkr-common/Makefile.dep
include $(RIOTBOARD)/common/arduino-mkr/Makefile.dep
2 changes: 1 addition & 1 deletion boards/arduino-mkrzero/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/arduino-mkr-common/Makefile.features
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features

-include $(RIOTCPU)/samd21/Makefile.features
4 changes: 2 additions & 2 deletions boards/arduino-mkrzero/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
USEMODULE += arduino-mkr-common
USEMODULE += boards_common_arduino-mkr

ifeq ($(PROGRAMMER),jlink)
export MKR_JLINK_DEVICE = atsamd21
endif

include $(RIOTBOARD)/arduino-mkr-common/Makefile.include
include $(RIOTBOARD)/common/arduino-mkr/Makefile.include

# add arduino-mkrzero include path
INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
2 changes: 1 addition & 1 deletion boards/arduino-uno/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/arduino-atmega-common
DIRS = $(RIOTBOARD)/common/arduino-atmega

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/arduino-uno/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/arduino-atmega-common/Makefile.features
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega328p/Makefile.features
4 changes: 2 additions & 2 deletions boards/arduino-uno/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# define the cpu used by the arduino uno board
export CPU = atmega328p

USEMODULE += arduino-atmega-common
USEMODULE += boards_common_arduino-atmega

# export needed for flash rule
export PORT_LINUX ?= /dev/ttyACM0
Expand All @@ -14,4 +14,4 @@ export FFLAGS += -p m328p
# overridden for debugging (which requires changes that require to use an ISP)
export PROGRAMMER ?= arduino

include $(RIOTBOARD)/arduino-atmega-common/Makefile.include
include $(RIOTBOARD)/common/arduino-atmega/Makefile.include
2 changes: 1 addition & 1 deletion boards/avsextrem/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/msba2-common
DIRS = $(RIOTBOARD)/common/msba2

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/avsextrem/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include $(RIOTBOARD)/msba2-common/Makefile.dep
include $(RIOTBOARD)/common/msba2/Makefile.dep
4 changes: 2 additions & 2 deletions boards/avsextrem/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
USEMODULE += msba2-common
USEMODULE += boards_common_msba2

include $(RIOTBOARD)/msba2-common/Makefile.include
include $(RIOTBOARD)/common/msba2/Makefile.include
3 changes: 3 additions & 0 deletions boards/common/arduino-atmega/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MODULE = boards_common_arduino-atmega

include $(RIOTBASE)/Makefile.base
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# include optional dependencies
include $(RIOTBOARD)/arduino-atmega-common/Makefile.dep
include $(RIOTBOARD)/common/arduino-atmega/Makefile.dep

INCLUDES += -I$(RIOTBOARD)/arduino-atmega-common/include
INCLUDES += -I$(RIOTBOARD)/common/arduino-atmega/include

# refine serial port information
export BAUD ?= 9600
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MODULE = arduino-atmega-common
MODULE = boards_common_arduino-mkr

include $(RIOTBASE)/Makefile.base
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ else
include $(RIOTMAKE)/tools/bossa.inc.mk
endif

INCLUDES += -I$(RIOTBOARD)/arduino-mkr-common/include
INCLUDES += -I$(RIOTBOARD)/common/arduino-mkr/include

# setup the boards dependencies
include $(RIOTBOARD)/$(BOARD)/Makefile.dep
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ flash: $(RIOTCPU)/$(CPU)/dist/wdog-disable.bin
# Reset the default goal.
.DEFAULT_GOAL :=

export OPENOCD_CONFIG ?= $(RIOTBOARD)/frdm-common/dist/old-openocd-$(CPU_FAMILY).cfg
export OPENOCD_CONFIG ?= $(RIOTBOARD)/common/frdm/dist/old-openocd-$(CPU_FAMILY).cfg
endif

# Configuration for OpenOCD v0.10.0 and newer
export OPENOCD_CONFIG ?= $(RIOTBOARD)/frdm-common/dist/openocd-$(CPU_FAMILY).cfg
export OPENOCD_CONFIG ?= $(RIOTBOARD)/common/frdm/dist/openocd-$(CPU_FAMILY).cfg

# Check the flash configuration field before flashing
export PRE_FLASH_CHECK_SCRIPT = $(RIOTCPU)/$(CPU)/dist/check-fcfield-elf.sh
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MODULE = remote-common
MODULE = boards_common_iotlab

include $(RIOTBASE)/Makefile.base
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ include $(RIOTMAKE)/tools/serial.inc.mk
include $(RIOTMAKE)/tools/openocd.inc.mk

# add the common header files to the include path
INCLUDES += -I$(RIOTBOARD)/iotlab-common/include
INCLUDES += -I$(RIOTBOARD)/common/iotlab/include
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MODULE = msb-430-common
MODULE = boards_common_msb-430

DIRS = drivers

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export DEBUGSERVER_FLAGS = $(MSPDEBUGFLAGS) gdb
export DEBUGGER = $(PREFIX)gdb
export DEBUGGER_FLAGS = --tui --ex="target remote localhost:2000" --ex "monitor reset halt" --ex load -ex "monitor reset halt" $(ELFFILE)

# export msb-430-common includes
export INCLUDES += -I$(RIOTBOARD)/msb-430-common/include
export INCLUDES += -I$(RIOTBOARD)/msb-430-common/drivers/include
# export common msb-430 includes
export INCLUDES += -I$(RIOTBOARD)/common/msb-430/include
export INCLUDES += -I$(RIOTBOARD)/common/msb-430/drivers/include

USEMODULE += msb-430-common-drivers
USEMODULE += boards_common_msb-430-drivers
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MODULE = msb-430-common-drivers
MODULE = boards_common_msb-430-drivers

include $(RIOTBOARD)/$(BOARD)/Makefile.include

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MODULE = msba2-common
MODULE = boards_common_msba2

DIRS = drivers

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ ifeq ($(PORT),)
endif
export FFLAGS = $(PORT) $(HEXFILE)

export INCLUDES += -I$(RIOTBOARD)/msba2-common/include -I$(RIOTBOARD)/msba2-common/drivers/include
INCLUDES += -I$(RIOTBOARD)/common/msba2/include
INCLUDES += -I$(RIOTBOARD)/common/msba2/drivers/include

export OFLAGS = -O ihex

export UNDEF += $(BINDIR)/cpu/startup.o

USEMODULE += msba2-common-drivers
USEMODULE += boards_common_msba2-drivers
File renamed without changes.
3 changes: 3 additions & 0 deletions boards/common/msba2/drivers/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MODULE = boards_common_msba2-drivers

include $(RIOTBASE)/Makefile.base
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions boards/common/nucleo/Makefile.include
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# include nucleo common serial configuration
include $(RIOTBOARD)/common/nucleo/Makefile.include.serial

# add the common header files to the include path
INCLUDES += -I$(RIOTBOARD)/common/nucleo/include
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ export STLINK_VERSION ?= 2-1
# Choose OpenOCD board configuration depending on CPU type
ifeq (,$(OPENOCD_CONFIG))
ifeq ($(CPU),stm32f0)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f0.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f0.cfg
else ifeq ($(CPU),stm32f1)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f1.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f1.cfg
else ifeq ($(CPU),stm32f2)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f2.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f2.cfg
else ifeq ($(CPU),stm32f3)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f3.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f3.cfg
else ifeq ($(CPU),stm32f4)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f4.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f4.cfg
else ifeq ($(CPU),stm32f7)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-f7.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-f7.cfg
else ifeq ($(CPU),stm32l0)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-l0.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-l0.cfg
else ifeq ($(CPU),stm32l1)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-l1.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-l1.cfg
else ifeq ($(CPU),stm32l4)
export OPENOCD_CONFIG := $(RIOTBOARD)/nucleo-common/dist/openocd-l4.cfg
export OPENOCD_CONFIG := $(RIOTBOARD)/common/nucleo/dist/openocd-l4.cfg
endif
endif

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions boards/common/nucleo144/Makefile.include
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# include nucleo common serial configuration
include $(RIOTBOARD)/common/nucleo/Makefile.include.serial

# add the common header files to the include path
INCLUDES += -I$(RIOTBOARD)/common/nucleo144/include
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions boards/common/nucleo32/Makefile.include
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# include nucleo common serial configuration
include $(RIOTBOARD)/common/nucleo/Makefile.include.serial

# add the common header files to the include path
INCLUDES += -I$(RIOTBOARD)/common/nucleo32/include
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MODULE = iotlab-common
MODULE = boards_common_remote

include $(RIOTBASE)/Makefile.base
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export DEBUGGER_FLAGS = $(BINDIR) $(ELFFILE)
export RESET_FLAGS = $(BINDIR)
export OBJDUMPFLAGS += --disassemble --source --disassembler-options=force-thumb

# include remote-common includes
export INCLUDES += -I$(RIOTBOARD)/remote-common/include
# include common remote includes
export INCLUDES += -I$(RIOTBOARD)/common/remote/include

# setup serial terminal
include $(RIOTMAKE)/tools/serial.inc.mk
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MODULE = arduino-mkr-common
MODULE = boards_common_wsn430

include $(RIOTBASE)/Makefile.base
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ export OFLAGS = -O ihex
export FLASHER = mspdebug
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"

# include wsn430-common includes
export INCLUDES += -I$(RIOTBOARD)/wsn430-common/include
# include common wsn430 includes
export INCLUDES += -I$(RIOTBOARD)/common/wsn430/include
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion boards/frdm-k22f/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export CPU = kinetis
export CPU_MODEL = mk22fn512vlh12

# Include default FRDM board config
include $(RIOTBOARD)/frdm-common/Makefile.include
include $(RIOTBOARD)/common/frdm/Makefile.include
2 changes: 1 addition & 1 deletion boards/frdm-k64f/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export CPU = kinetis
export CPU_MODEL = mk64fn1m0vll12

# Include default FRDM board config
include $(RIOTBOARD)/frdm-common/Makefile.include
include $(RIOTBOARD)/common/frdm/Makefile.include
2 changes: 1 addition & 1 deletion boards/iotlab-a8-m3/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/iotlab-common
DIRS = $(RIOTBOARD)/common/iotlab

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/iotlab-a8-m3/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include $(RIOTBOARD)/iotlab-common/Makefile.dep
include $(RIOTBOARD)/common/iotlab/Makefile.dep
2 changes: 1 addition & 1 deletion boards/iotlab-a8-m3/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/iotlab-common/Makefile.features
include $(RIOTBOARD)/common/iotlab/Makefile.features

-include $(RIOTCPU)/stm32f1/Makefile.features
4 changes: 2 additions & 2 deletions boards/iotlab-a8-m3/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
USEMODULE += iotlab-common
USEMODULE += boards_common_iotlab

include $(RIOTBOARD)/iotlab-common/Makefile.include
include $(RIOTBOARD)/common/iotlab/Makefile.include

# add iotlab-a8-m3 include path
INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
2 changes: 1 addition & 1 deletion boards/iotlab-m3/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MODULE = board

DIRS = $(RIOTBOARD)/iotlab-common
DIRS = $(RIOTBOARD)/common/iotlab

include $(RIOTBASE)/Makefile.base
2 changes: 1 addition & 1 deletion boards/iotlab-m3/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include $(RIOTBOARD)/iotlab-common/Makefile.dep
include $(RIOTBOARD)/common/iotlab/Makefile.dep

ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += isl29020
Expand Down
2 changes: 1 addition & 1 deletion boards/iotlab-m3/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/iotlab-common/Makefile.features
include $(RIOTBOARD)/common/iotlab/Makefile.features

-include $(RIOTCPU)/stm32f1/Makefile.features
4 changes: 2 additions & 2 deletions boards/iotlab-m3/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
USEMODULE += iotlab-common
USEMODULE += boards_common_iotlab

include $(RIOTBOARD)/iotlab-common/Makefile.include
include $(RIOTBOARD)/common/iotlab/Makefile.include

# add iotlab-m3 include path
INCLUDES += -I$(RIOTBOARD)/$(BOARD)/include
Loading

0 comments on commit da24cda

Please sign in to comment.