Blame view

RIOT/tests/driver_at86rf2xx/Makefile 754 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  APPLICATION = driver_at86rf2xx
  include ../Makefile.tests_common
  
  # exclude boards with insufficient memory
  BOARD_INSUFFICIENT_MEMORY := nucleo32-f031
  
  FEATURES_REQUIRED = periph_spi periph_gpio
  
  DISABLE_MODULE += auto_init
  
  USEMODULE += od
  USEMODULE += shell
  USEMODULE += shell_commands
  USEMODULE += ps
  USEMODULE += at86rf231
  
  # define the driver to be used for selected boards
  ifneq (,$(filter samr21-xpro,$(BOARD)))
    DRIVER := at86rf233
  endif
  ifneq (,$(filter iotlab-m3 fox,$(BOARD)))
    DRIVER := at86rf231
  endif
  ifneq (,$(filter mulle,$(BOARD)))
    DRIVER := at86rf212b
  endif
  
  # use the at86rf231 as fallback device
  DRIVER ?= at86rf231
  
  # include the selected driver
  USEMODULE += $(DRIVER)
  
  CFLAGS += -DDEVELHELP
  
  include $(RIOTBASE)/Makefile.include