From 502c1700ca8188eec12042a1a8bed75996c7e3e0 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Sun, 25 Apr 2021 18:17:19 +0200 Subject: [PATCH] Bug fix release 3.6.2: serial bit rate typo in example. --- examples/Callbacks/Callbacks.ino | 2 +- library.json | 2 +- library.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Callbacks/Callbacks.ino b/examples/Callbacks/Callbacks.ino index 6a9e64b..1f2784b 100644 --- a/examples/Callbacks/Callbacks.ino +++ b/examples/Callbacks/Callbacks.ino @@ -66,7 +66,7 @@ bool sleepCb() void setup() { #if !defined(ARDUINO_attiny) - Serial.begin(74800); + Serial.begin(74880); while (!Serial); delay(100); Serial.println(); diff --git a/library.json b/library.json index 558066f..3e216fa 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "CoopTask", - "version": "3.6.1", + "version": "3.6.2", "keywords": [ "multitasking", "timing" ], diff --git a/library.properties b/library.properties index 1ee56b5..41504fb 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=CoopTask -version=3.6.1 +version=3.6.2 author=Dirk O. Kaar maintainer=Dirk O. Kaar sentence=Portable C++ library for cooperative multitasking like Arduino Scheduler on ESP8266/ESP32, AVR, Linux, Windows