blob: 0f543668b536b187e39732d4780f5b22b59a8b0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# vim:ft=make
#
# Copyright 2020 Birte Kristina Friesel
#
# SPDX-License-Identifier: CC0-1.0
ifdef app
loop = 1
override timer_s = 1
override arch_drivers += ,spi
CONFIG_driver_nrf24l01 = y
COMMON_FLAGS += -DCONFIG_driver_nrf24l01
endif
ifeq (${tx}, 1)
COMMON_FLAGS += -DNRF24L01TEST_TX
endif
|