Blame view

RIOT/tests/driver_kw2xrf/Makefile 526 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
  APPLICATION = driver_kw2xrf
  include ../Makefile.tests_common
  
  FEATURES_REQUIRED = periph_spi periph_gpio
  
  BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 \
                               nucleo-f334 nucleo-l053 stm32f0discovery
  
  USEMODULE += auto_init_gnrc_netif
  USEMODULE += gnrc_netdev_default
  USEMODULE += shell
  USEMODULE += shell_commands
  USEMODULE += ps
  
  DRIVER ?= kw2xrf
  
  # finally include the actual chosen driver
  USEMODULE += $(DRIVER)
  
  CFLAGS += -DDEVELHELP
  
  include $(RIOTBASE)/Makefile.include