Blame view

RIOT/tests/driver_nrf24l01p_lowlevel/Makefile 648 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
  APPLICATION = driver_nrf24l01p_lowlevel
  include ../Makefile.tests_common
  
  # exclude boards with insufficient memory
  BOARD_INSUFFICIENT_MEMORY := nucleo32-f031
  
  FEATURES_REQUIRED = periph_spi
  
  USEMODULE += shell
  USEMODULE += shell_commands
  USEMODULE += ps
  USEMODULE += xtimer
  USEMODULE += nrf24l01p
  
  # set default device parameters in case they are undefined
  SPI_PORT ?= SPI_DEV\(0\)
  CE_PIN   ?= GPIO_PIN\(0,0\)
  CS_PIN   ?= GPIO_PIN\(0,1\)
  IRQ_PIN  ?= GPIO_PIN\(0,2\)
  
  # export parameters
  CFLAGS += -DSPI_PORT=$(SPI_PORT)
  CFLAGS += -DCE_PIN=$(CE_PIN)
  CFLAGS += -DCS_PIN=$(CS_PIN)
  CFLAGS += -DIRQ_PIN=$(IRQ_PIN)
  
  include $(RIOTBASE)/Makefile.include