From 42a4668c8076947d327da5b46a6f8d409a6ce2f9 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 3 Mar 2016 11:28:25 +0100 Subject: add copyright notices --- src/display.cc | 10 ++++++++++ src/display.h | 10 ++++++++++ src/fecmodem.cc | 10 ++++++++++ src/fecmodem.h | 10 ++++++++++ src/hamming.h | 10 ++++++++++ src/main.cc | 10 ++++++++++ src/modem.cc | 2 +- src/modem.h | 2 +- src/static_patterns.h | 10 ++++++++++ src/storage.cc | 10 ++++++++++ src/storage.h | 10 ++++++++++ src/system.cc | 10 ++++++++++ src/system.h | 10 ++++++++++ 13 files changed, 112 insertions(+), 2 deletions(-) (limited to 'src') 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 #include #include 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 #include 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 #include #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 #include 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 #include 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 #include #include 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 #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 #include #include 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 #define SHUTDOWN_THRESHOLD 2048 -- cgit v1.2.3