summaryrefslogtreecommitdiff
path: root/src/app/ws2812b_uart
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-12-08 18:19:13 +0100
committerDaniel Friesel <derf@finalrewind.org>2020-12-08 18:19:13 +0100
commit812899797d6d8ea773bf960cd74680d20043c5a4 (patch)
tree470bb05de36285e9f8b86fa34daebd163e3860ed /src/app/ws2812b_uart
parente1526bb2c84b315c72a089dbb50447183d4b1685 (diff)
add licensing information
Diffstat (limited to 'src/app/ws2812b_uart')
-rw-r--r--src/app/ws2812b_uart/Kconfig4
-rw-r--r--src/app/ws2812b_uart/Makefile.inc6
-rw-r--r--src/app/ws2812b_uart/main.cc5
3 files changed, 15 insertions, 0 deletions
diff --git a/src/app/ws2812b_uart/Kconfig b/src/app/ws2812b_uart/Kconfig
index 5267de5..d92c8c9 100644
--- a/src/app/ws2812b_uart/Kconfig
+++ b/src/app/ws2812b_uart/Kconfig
@@ -1,2 +1,6 @@
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: CC0-1.0
+
prompt "UART to WS2812b"
depends on arch_arduino_nano && meta_driver_neopixel && meta_driver_stdin
diff --git a/src/app/ws2812b_uart/Makefile.inc b/src/app/ws2812b_uart/Makefile.inc
index a515d32..18bc352 100644
--- a/src/app/ws2812b_uart/Makefile.inc
+++ b/src/app/ws2812b_uart/Makefile.inc
@@ -1,3 +1,9 @@
+# vim:ft=make
+#
+# Copyright 2020 Daniel Friesel
+#
+# SPDX-License-Identifier: CC0-1.0
+
ifdef app
override loop = 1
override arch_drivers += ,stdin,neopixel
diff --git a/src/app/ws2812b_uart/main.cc b/src/app/ws2812b_uart/main.cc
index 791e67a..97fb1e4 100644
--- a/src/app/ws2812b_uart/main.cc
+++ b/src/app/ws2812b_uart/main.cc
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2020 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
#include "arch.h"
#include "driver/neopixel.h"
#include "driver/stdin.h"