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

pkg/nanors: add reed solomon codec implementation

This commit is contained in:
Benjamin Valentin 2022-02-24 13:22:08 +01:00
parent fb24a54208
commit 11ab3e3aa4
3 changed files with 20 additions and 0 deletions

12
pkg/nanors/Makefile Normal file
View File

@ -0,0 +1,12 @@
PKG_NAME=nanors
PKG_URL=https://github.com/sleepybishop/nanors.git
PKG_VERSION=389007b64a66f1c0c38c13bc510da1173cfe6097
PKG_LICENSE=MIT
include $(RIOTBASE)/pkg/pkg.mk
# disable large look-up tables
CFLAGS += -DOBLAS_TINY
all:
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1,2 @@
INCLUDES += -I$(PKGDIRBASE)/nanors
INCLUDES += -I$(PKGDIRBASE)/nanors/deps/obl

6
pkg/nanors/doc.txt Normal file
View File

@ -0,0 +1,6 @@
/**
* @defgroup pkg_nanors small Reed-Solomon code implementation
* @ingroup pkg
* @brief Provides a tiny, performant implementation of reed solomon codes
* @see https://github.com/sleepybishop/nanors
*/