1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg: add support for Cayenne LPP format

This commit is contained in:
Alexandre Abadie 2018-03-21 11:54:03 +01:00
parent 690c36b3cf
commit ec82c65b90
4 changed files with 29 additions and 0 deletions

11
pkg/cayenne-lpp/Makefile Normal file
View File

@ -0,0 +1,11 @@
PKG_NAME=cayenne-lpp
PKG_URL=https://github.com/aabadie/cayenne-lpp
PKG_VERSION=ad3aa26043e221eda28ac3da2484e1ef84986442
PKG_LICENSE=LGPLv2.1
.PHONY: all
all: git-download
"$(MAKE)" -C $(PKG_BUILDDIR) -f $(CURDIR)/Makefile.$(PKG_NAME)
include $(RIOTBASE)/pkg/pkg.mk

View File

@ -0,0 +1,3 @@
MODULE = cayenne-lpp
include $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1 @@
INCLUDES += -I$(PKGDIRBASE)/cayenne-lpp

14
pkg/cayenne-lpp/doc.txt Normal file
View File

@ -0,0 +1,14 @@
/**
* @defgroup pkg_cayenne-lpp Cayenne Low Power Payload (LPP)
* @ingroup pkg
* @ingroup sys
* @brief Provides a RIOT support for Cayenne LPP format
*
* The Cayenne Low Power Payload (LPP) provides a convenient and easy way to
* send data over LPWAN networks such as LoRaWAN.
*
* For more details on the format, see
* https://mydevices.com/cayenne/docs_stage/lora/#lora-cayenne-low-power-payload
*
* @see https://github.com/aabadie/cayenne-lpp
*/