Blame view

RIOT/tests/driver_srf02/Makefile 418 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
  APPLICATION = driver_srf02
  include ../Makefile.tests_common
  
  FEATURES_REQUIRED = periph_i2c
  
  USEMODULE += xtimer
  USEMODULE += srf02
  USEMODULE += shell
  
  # set default device parameters in case they are undefined
  TEST_SRF02_I2C ?= I2C_DEV\(0\)
  TEST_MODE      ?= SRF02_MODE_REAL_CM
  
  # export parameters
  CFLAGS += -DTEST_SRF02_I2C=$(TEST_SRF02_I2C)
  CFLAGS += -DTEST_MODE=$(TEST_MODE)
  
  include $(RIOTBASE)/Makefile.include