Kaynağa Gözat

v3.1.2 - corrected external definitions of millis() and micros()

Anatoli Arkhipenko 6 yıl önce
ebeveyn
işleme
33f14b25cc
5 değiştirilmiş dosya ile 8 ekleme ve 5 silme
  1. 1 1
      README
  2. 1 1
      README.md
  3. 1 1
      library.json
  4. 1 1
      library.properties
  5. 4 1
      src/TaskScheduler.h

+ 1 - 1
README

@@ -1,5 +1,5 @@
 Task Scheduler – cooperative multitasking for Arduino, ESPx, STM32 and other microcontrollers
-Version 3.1.1 2020-01-09
+Version 3.1.2 2020-01-17
 
 If you find TaskScheduler useful for your Arduino project, please drop me an email: arkhipenko@hotmail.com
 ----------------------------------------------------------------------------------------------------------

+ 1 - 1
README.md

@@ -1,6 +1,6 @@
 # Task Scheduler
 ### Cooperative multitasking for Arduino, ESPx, STM32 and other microcontrollers
-#### Version 3.1.1: 2020-01-09
+#### Version 3.1.2: 2020-01-17
 
 ### OVERVIEW:
 A lightweight implementation of cooperative multitasking (task scheduling) supporting:

+ 1 - 1
library.json

@@ -16,7 +16,7 @@
       "maintainer": true
     }
   ],
-  "version": "3.1.1",
+  "version": "3.1.2",
   "frameworks": "arduino",
   "platforms": "*"
 }

+ 1 - 1
library.properties

@@ -1,5 +1,5 @@
 name=TaskScheduler
-version=3.1.1
+version=3.1.2
 author=Anatoli Arkhipenko <arkhipenko@hotmail.com>
 maintainer=Anatoli Arkhipenko <arkhipenko@hotmail.com>
 sentence=Cooperative multitasking for Arduino, ESPx, STM32 and other microcontrollers.

+ 4 - 1
src/TaskScheduler.h

@@ -154,8 +154,11 @@
 // v3.1.0:
 //    2020-01-07 - feature: added 4 cpu load monitoring methods for _TASK_TIMECRITICAL compilation option
 //
-// v3.1.1.:
+// v3.1.1:
 //    2020-01-09 - update: more precise CPU load measuring. Ability to define idle sleep threshold for ESP chips
+//
+// v3.1.2:
+//    2020-01-17 - bug fix: corrected external forward definitions of millis() and micros
 
 
 #include <Arduino.h>