summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-03 11:28:25 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-03 11:28:25 +0100
commit42a4668c8076947d327da5b46a6f8d409a6ce2f9 (patch)
treea13b476041e8b628ae7740f88c2fab43bfba6c33 /src
parent4d6fb17a098d722429d5bc3a8d58e33b1cc7b748 (diff)
add copyright notices
Diffstat (limited to 'src')
-rw-r--r--src/display.cc10
-rw-r--r--src/display.h10
-rw-r--r--src/fecmodem.cc10
-rw-r--r--src/fecmodem.h10
-rw-r--r--src/hamming.h10
-rw-r--r--src/main.cc10
-rw-r--r--src/modem.cc2
-rw-r--r--src/modem.h2
-rw-r--r--src/static_patterns.h10
-rw-r--r--src/storage.cc10
-rw-r--r--src/storage.h10
-rw-r--r--src/system.cc10
-rw-r--r--src/system.h10
13 files changed, 112 insertions, 2 deletions
diff --git a/src/display.cc b/src/display.cc
index b7942e8..ed1880e 100644
--- a/src/display.cc
+++ b/src/display.cc
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/pgmspace.h>
diff --git a/src/display.h b/src/display.h
index 3a526b2..41b3c83 100644
--- a/src/display.h
+++ b/src/display.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <stdlib.h>
diff --git a/src/fecmodem.cc b/src/fecmodem.cc
index 3e4af68..85221dc 100644
--- a/src/fecmodem.cc
+++ b/src/fecmodem.cc
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <stdlib.h>
#include "fecmodem.h"
diff --git a/src/fecmodem.h b/src/fecmodem.h
index c9a942b..087aae4 100644
--- a/src/fecmodem.h
+++ b/src/fecmodem.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <stdlib.h>
diff --git a/src/hamming.h b/src/hamming.h
index 9828baa..275185b 100644
--- a/src/hamming.h
+++ b/src/hamming.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#ifndef HAMMING_H_
#define HAMMING_H_
diff --git a/src/main.cc b/src/main.cc
index b42c12f..9e37b59 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <stdlib.h>
diff --git a/src/modem.cc b/src/modem.cc
index a826306..e34910a 100644
--- a/src/modem.cc
+++ b/src/modem.cc
@@ -3,7 +3,7 @@
* Audio modem for Attiny85 & other AVR chips with modifications
*
* Author: Jari Tulilahti
- * Copyright: 2014 Rakettitiede Oy
+ * Copyright: 2014 Rakettitiede Oy and 2016 Daniel Friesel
* License: LGPLv3, see COPYING, and COPYING.LESSER -files for more info
*/
diff --git a/src/modem.h b/src/modem.h
index e3706f3..8efcfb0 100644
--- a/src/modem.h
+++ b/src/modem.h
@@ -1,6 +1,6 @@
/* Name: modem.h
* Author: Jari Tulilahti
- * Copyright: 2014 Rakettitiede Oy
+ * Copyright: 2014 Rakettitiede Oy and Daniel Friesel
* License: LGPLv3, see COPYING, and COPYING.LESSER -files for more info
*/
diff --git a/src/static_patterns.h b/src/static_patterns.h
index f590f60..9190180 100644
--- a/src/static_patterns.h
+++ b/src/static_patterns.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#ifndef STATIC_PATTERNS_H_
#define STATIC_PATTERNS_H_
diff --git a/src/storage.cc b/src/storage.cc
index d1c2ee1..fef0ee2 100644
--- a/src/storage.cc
+++ b/src/storage.cc
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <util/delay.h>
#include <avr/io.h>
#include <stdlib.h>
diff --git a/src/storage.h b/src/storage.h
index 0193b17..5485e3c 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <stdlib.h>
#define I2C_EEPROM_ADDR 0x50
diff --git a/src/system.cc b/src/system.cc
index 61a8f01..47ea436 100644
--- a/src/system.cc
+++ b/src/system.cc
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/wdt.h>
diff --git a/src/system.h b/src/system.h
index 279e680..3cb74b0 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2016 by Daniel Friesel
+ *
+ * License: You may use, redistribute and/or modify this file under the terms
+ * of either:
+ * * The GNU LGPL v3 (see COPYING and COPYING.LESSER), or
+ * * The 3-clause BSD License (see COPYING.BSD)
+ *
+ */
+
#include <stdlib.h>
#define SHUTDOWN_THRESHOLD 2048