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

pkg: add uMorse

This commit is contained in:
smlng 2017-10-31 01:31:40 +01:00
parent 9b32d18e92
commit 805eb9c38b
4 changed files with 23 additions and 0 deletions

12
pkg/umorse/Makefile Normal file
View File

@ -0,0 +1,12 @@
PKG_NAME=umorse
PKG_URL=https://github.com/smlng/uMorse
PKG_VERSION=1dc14abdba22cca2f7efc053b2bce327bc7db97e
PKG_LICENSE=MIT
.PHONY: all
all: git-download
@cp Makefile.umorse $(PKG_BUILDDIR)/Makefile
$(MAKE) -C $(PKG_BUILDDIR)
include $(RIOTBASE)/pkg/pkg.mk

View File

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

View File

@ -0,0 +1,2 @@
SRC := umorse.c print.c
include $(RIOTBASE)/Makefile.base

8
pkg/umorse/doc.txt Normal file
View File

@ -0,0 +1,8 @@
/**
* @defgroup pkg_umorse Lightweight Morse encoder
* @ingroup pkg
* @ingroup sys
* @brief Provides slim Morse encoding functionality
*
* @see https://github.com/smlng/uMorse
*/