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 9237d3a commit 378cd2aCopy full SHA for 378cd2a
STM32F1/cores/maple/Print.cpp
@@ -126,9 +126,7 @@ size_t Print::print(double n, int digits) {
126
127
size_t Print::print(const __FlashStringHelper *ifsh)
128
{
129
- size_t n = print(ifsh);
130
- n += println();
131
- return n;
+ return print(reinterpret_cast<const char *>(ifsh));
132
}
133
134
size_t Print::print(const Printable& x)
STM32F4/cores/maple/Print.cpp
0 commit comments