File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,4 +43,4 @@ class Client : public Stream {
4343 uint8_t * rawIPAddress (IPAddress& addr) { return addr.raw_address (); };
4444};
4545
46- }
46+ }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class HardwareI2C : public Stream
3232 virtual void end () = 0;
3333
3434 virtual void setClock (uint32_t freq) = 0;
35-
35+
3636 virtual void beginTransmission (uint8_t address) = 0;
3737 virtual uint8_t endTransmission (bool stopBit) = 0;
3838 virtual uint8_t endTransmission (void ) = 0;
Original file line number Diff line number Diff line change @@ -103,4 +103,4 @@ class HardwareSerial : public Stream
103103// XXX: Are we keeping the serialEvent API?
104104extern void serialEventRun (void ) __attribute__((weak));
105105
106- }
106+ }
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class Stream : public Print
6767
6868 void setTimeout (unsigned long timeout); // sets maximum milliseconds to wait for stream data, default is 1 second
6969 unsigned long getTimeout (void ) { return _timeout; }
70-
70+
7171 bool find (const char *target); // reads data from the stream until the target string is found
7272 bool find (const uint8_t *target) { return find ((const char *)target); }
7373 // returns true if target string is found, false if timed out (see setTimeout)
@@ -130,4 +130,4 @@ class Stream : public Print
130130
131131}
132132
133- using arduino::Stream;
133+ using arduino::Stream;
You can’t perform that action at this time.
0 commit comments