Blame view

RIOT/tests/emb6/Makefile 1.08 KB
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
37
38
39
40
41
42
  APPLICATION = emb6
  # overwrite board, do not set native as default
  BOARD ?= samr21-xpro
  include ../Makefile.tests_common
  
  FEATURES_REQUIRED = periph_gpio periph_spi  # for at86rf231
  
  # MSP-430 doesn't support C11's atomic functionality yet
  BOARD_BLACKLIST := msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
  
  BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-l031 nucleo32-f031 \
                               nucleo32-f042 nucleo-l053 stm32f0discovery telosb \
                               wsn430-v1_3b wsn430-v1_4 z1
  
  USEPKG += emb6
  
  USEMODULE += emb6_router
  USEMODULE += emb6_sock_udp
  USEMODULE += ipv6_addr
  USEMODULE += shell
  USEMODULE += shell_commands
  USEMODULE += ps
  USEMODULE += od
  
  # 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)
  
  include $(RIOTBASE)/Makefile.include