We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb16a9b commit 8318da3Copy full SHA for 8318da3
cores/arduino/USBSerial.cpp
@@ -187,11 +187,6 @@ bool USBSerial::rts(void)
187
return false;
188
}
189
190
-bool USBSerial::isConnected()
191
-{
192
- return CDC_connected();
193
-}
194
-
195
USBSerial::operator bool()
196
{
197
bool result = false;
cores/arduino/USBSerial.h
@@ -53,7 +53,6 @@ class USBSerial : public Stream {
53
uint8_t numbits();
54
bool dtr();
55
bool rts();
56
- bool isConnected();
57
enum {
58
ONE_STOP_BIT = 0,
59
ONE_AND_HALF_STOP_BIT = 1,
0 commit comments