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 {
43
43
uint8_t * rawIPAddress (IPAddress& addr) { return addr.raw_address (); };
44
44
};
45
45
46
- }
46
+ }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class HardwareI2C : public Stream
32
32
virtual void end () = 0;
33
33
34
34
virtual void setClock (uint32_t freq) = 0;
35
-
35
+
36
36
virtual void beginTransmission (uint8_t address) = 0;
37
37
virtual uint8_t endTransmission (bool stopBit) = 0;
38
38
virtual uint8_t endTransmission (void ) = 0;
Original file line number Diff line number Diff line change @@ -103,4 +103,4 @@ class HardwareSerial : public Stream
103
103
// XXX: Are we keeping the serialEvent API?
104
104
extern void serialEventRun (void ) __attribute__((weak));
105
105
106
- }
106
+ }
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class Stream : public Print
67
67
68
68
void setTimeout (unsigned long timeout); // sets maximum milliseconds to wait for stream data, default is 1 second
69
69
unsigned long getTimeout (void ) { return _timeout; }
70
-
70
+
71
71
bool find (const char *target); // reads data from the stream until the target string is found
72
72
bool find (const uint8_t *target) { return find ((const char *)target); }
73
73
// returns true if target string is found, false if timed out (see setTimeout)
@@ -130,4 +130,4 @@ class Stream : public Print
130
130
131
131
}
132
132
133
- using arduino::Stream;
133
+ using arduino::Stream;
You can’t perform that action at this time.
0 commit comments