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 7b14e6d commit 7ade600Copy full SHA for 7ade600
cores/arduino/Uart.cpp
@@ -92,19 +92,6 @@ size_t Uart::write(const uint8_t data)
92
return 1;
93
}
94
95
-size_t Uart::write(const char * data)
96
-{
97
- size_t writed = 0;
98
-
99
- while(*data != '\0')
100
- {
101
- writed += write(*data);
102
- ++data;
103
- }
104
105
- return writed;
106
-}
107
108
SercomNumberStopBit Uart::extractNbStopBit(uint8_t config)
109
{
110
switch(config & HARDSER_STOP_BIT_MASK)
cores/arduino/Uart.h
@@ -38,7 +38,6 @@ class Uart : public HardwareSerial
38
int read();
39
void flush();
40
size_t write(const uint8_t data);
41
- size_t write(const char * data);
42
43
void IrqHandler();
44
0 commit comments