aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatoli Arkhipenko <arkhipenko@hotmail.com>2016-04-27 12:53:27 -0400
committerAnatoli Arkhipenko <arkhipenko@hotmail.com>2016-04-27 12:53:27 -0400
commit2114066ebb6b31a44f62667727c3df5e917e7be1 (patch)
tree41cb3eea23b13ad3407a617dd1455abff2c5d591
parent7d141252e8309099edd7c2334b0ac243812d3d99 (diff)
Updated license to BSD license
-rw-r--r--LICENSE.txt17
-rw-r--r--src/TaskScheduler.h27
2 files changed, 18 insertions, 26 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..410801a
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,17 @@
+Copyright (c) 2015 Anatoli Arkhipenko.
+All rights reserved.
+
+THIS SOFTWARE IS PROVIDED FREE OF CHARGE ACCORDING TO BSD LICENSE:
+
+Redistribution and use in source and binary forms are permitted
+provided that the above copyright notice and this paragraph are
+duplicated in all such forms and that any documentation,
+advertising materials, and other materials related to such
+distribution and use acknowledge that the software was developed
+by Anatoli Arkhipenko. The name of the auther may not be used
+to endorse or promote products derived from this software without
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file
diff --git a/src/TaskScheduler.h b/src/TaskScheduler.h
index e81212c..b553a9b 100644
--- a/src/TaskScheduler.h
+++ b/src/TaskScheduler.h
@@ -1,4 +1,4 @@
-// Cooperative multitasking library for Arduino version 2.0.2
+// Cooperative multitasking library for Arduino
// Copyright (c) 2015 Anatoli Arkhipenko
//
// Changelog:
@@ -88,31 +88,6 @@
// 2016-02-01 - support for microsecond resolution
// 2016-02-02 - added Scheduler baseline start time reset method: startNow()
-/* ============================================
-Cooperative multitasking library code is placed under the MIT license
-Copyright (c) 2015 Anatoli Arkhipenko
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-===============================================
-*/
-
-
#include <Arduino.h>
#ifndef _TASKSCHEDULER_H_