mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
9d61bdbb06
Add a basic SenML module and submodules with support for: - Encoding SenML values as CBOR using NanoCBOR. - Converting from Phydat to SenML. - Reading and encoding SAUL sensors.
17 lines
391 B
Makefile
17 lines
391 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += senml_cbor
|
|
USEMODULE += fmt
|
|
USEMODULE += embunit
|
|
|
|
CFLAGS += -DCONFIG_SENML_ATTR_SUM
|
|
CFLAGS += -DCONFIG_SENML_ATTR_VERSION
|
|
CFLAGS += -DCONFIG_SENML_ATTR_UPDATE_TIME
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=1536
|
|
|
|
# The following BOARDs redefine THREAD_STACKSIZE_DEFAULT
|
|
BOARD_BLACKLIST += nucleo-l011k4 stk3200
|
|
|
|
include $(RIOTBASE)/Makefile.include
|