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
|