Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870432e commit fd90b45Copy full SHA for fd90b45
cores/arduino/Print.cpp
@@ -227,7 +227,6 @@ size_t Print::printNumber(unsigned long n, uint8_t base)
227
} // else: skip leading zeros
228
c = access[i] & 0x0f;
229
if (c != 0 || written != 0) {
230
- // skip leading zeros
231
c = (c < 10 ? c + '0' : c + 'A' - 10);
232
written += write(c);
233
0 commit comments