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:
parent
fb24a54208
commit
11ab3e3aa4
12
pkg/nanors/Makefile
Normal file
12
pkg/nanors/Makefile
Normal 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
|
2
pkg/nanors/Makefile.include
Normal file
2
pkg/nanors/Makefile.include
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
INCLUDES += -I$(PKGDIRBASE)/nanors
|
||||||
|
INCLUDES += -I$(PKGDIRBASE)/nanors/deps/obl
|
6
pkg/nanors/doc.txt
Normal file
6
pkg/nanors/doc.txt
Normal 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
|
||||||
|
*/
|
Loading…
Reference in New Issue
Block a user