Blame view

RIOT/tests/test_perso_at86RF/Makefile 478 Bytes
fb11e647   vrobic   reseau statique a...
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
  APPLICATION = driver_at86rf2xx
  include ../Makefile.tests_common
  
  FEATURES_REQUIRED = periph_spi periph_gpio
  
  DISABLE_MODULE += auto_init
  
  USEMODULE += od
  USEMODULE += shell
  USEMODULE += shell_commands
  USEMODULE += ps
  USEMODULE += gnrc_netdev_default
  
  # define the driver to be used for selected boards
  
  
  # use the at86rf231 as fallback device
  DRIVER := at86rf231
  
  # include the selected driver
  USEMODULE += $(DRIVER)
  
  CFLAGS += -DDEVELHELP
  
  include $(RIOTBASE)/Makefile.include