-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg: add support for Cayenne LPP format
- Loading branch information
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
PKG_NAME=cayenne-lpp | ||
PKG_URL=https://github.com/aabadie/cayenne-lpp | ||
PKG_VERSION=a418dbe186b2535edfb67896da8cf00b94735470 | ||
PKG_LICENSE=LGPLv2.1 | ||
|
||
.PHONY: all | ||
|
||
all: git-download | ||
"$(MAKE)" -C $(PKG_BUILDDIR) -f $(CURDIR)/Makefile.$(PKG_NAME) | ||
|
||
include $(RIOTBASE)/pkg/pkg.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MODULE = cayenne-lpp | ||
|
||
include $(RIOTBASE)/Makefile.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
INCLUDES += -I$(PKGDIRBASE)/cayenne-lpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
*/ |