Skip to content

Commit a553fae

Browse files
codestyle unification
1 parent 5a417ea commit a553fae

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

api/Client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ class Client : public Stream {
4343
uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); };
4444
};
4545

46-
}
46+
}

api/HardwareI2C.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

api/HardwareSerial.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ class HardwareSerial : public Stream
103103
// XXX: Are we keeping the serialEvent API?
104104
extern void serialEventRun(void) __attribute__((weak));
105105

106-
}
106+
}

api/Stream.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)