mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
f7aff3c0aa
Added `CONFIG_SKALD_ADV_CHANNELS` which is then parsed to and ordered list `SKALD_ADV_CHAN` Co-authored-by: Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
6 lines
224 B
Makefile
6 lines
224 B
Makefile
# Parse kconfig symbol `CONFIG_SKALD_ADV_CHANNELS` to an ordered list
|
|
ifdef CONFIG_SKALD_ADV_CHANNELS
|
|
SKALD_ADV_CHAN := { $(shell echo $(CONFIG_SKALD_ADV_CHANNELS)) }
|
|
CFLAGS += -DSKALD_ADV_CHAN="$(SKALD_ADV_CHAN)"
|
|
endif
|