mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-12 20:49:16 +03:00
Fixing SoftwareSerial bug (call to printByte('0') instead of print('0')).
This commit is contained in:
@@ -213,7 +213,7 @@ void SoftwareSerial::printNumber(unsigned long n, uint8_t base)
|
||||
unsigned long i = 0;
|
||||
|
||||
if (n == 0) {
|
||||
printByte('0');
|
||||
print('0');
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user