mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
49bd85d00a
Skald is a very small and simple, TX-only BLE stack that supports sending advertisements only. It is useful for building all kinds of BLE beacons with very minimal memory footprints.
12 lines
209 B
Makefile
12 lines
209 B
Makefile
SRC = skald.c
|
|
|
|
ifneq (,$(filter skald_ibeacon,$(USEMODULE)))
|
|
SRC += skald_ibeacon.c
|
|
endif
|
|
|
|
ifneq (,$(filter skald_eddystone,$(USEMODULE)))
|
|
SRC += skald_eddystone.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|