forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EspSoftwareSerial 8.0.1: onReceive bug fix and new namespace (esp8266…
…#8869) * Upcoming EspSoftwareSerial 7.0.1 * EspSoftwareSerial example: higher bitrates due to forcing half-duplex * Adapt to SoftwareSerial's latest use of namespace. * In EspSoftwareSerial, some renaming after review feedback. * EspSoftwareSerial's use of a template class in order to permit users their own GPIO capabilities definitions. * CI caught some warning. * Stick to non-namespace EspSoftwareSerial class name for the moment. * Delegate operator() is now nullptr-safe, good for use in ISRs. * Pushed EspSoftwareSerial 8.0.1: Platformio picks up versions that aren't published in Github
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule SoftwareSerial
updated
16 files
+13 −11 | README.md | |
+5 −5 | examples/bitpattern/bitpattern.ino | |
+17 −17 | examples/loopback/loopback.ino | |
+6 −6 | examples/onewiretest/onewiretest.ino | |
+80 −0 | examples/onreceive/onreceive.ino | |
+13 −13 | examples/repeater/repeater.ino | |
+0 −113 | examples/servoTester/servoTester.ino | |
+6 −6 | examples/swsertest/swsertest.ino | |
+2 −2 | keywords.txt | |
+1 −1 | library.json | |
+1 −1 | library.properties | |
+107 −159 | src/SoftwareSerial.cpp | |
+210 −64 | src/SoftwareSerial.h | |
+113 −41 | src/circular_queue/Delegate.h | |
+2 −2 | src/circular_queue/MultiDelegate.h | |
+6 −6 | src/circular_queue/circular_queue.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters