Skip to content

Commit 904e02a

Browse files
committed
TX period bias for ESP32.
1 parent b9fe2ec commit 904e02a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SoftwareSerial.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class SoftwareSerial : public Stream {
108108
#if defined(ESP8266)
109109
m_periodStart = ESP.getCycleCount() - 64;
110110
#elif defined(ESP32)
111-
m_periodStart = ESP.getCycleCount();
111+
m_periodStart = ESP.getCycleCount() - 64;
112112
#else
113113
m_periodStart = ESP.getCycleCount();
114114
#endif

0 commit comments

Comments
 (0)