Skip to content

Commit 395695b

Browse files
facchinmsandeepmistry
authored andcommitted
Increase Wire TX and RX buffer size to 256
1 parent 503a9b3 commit 395695b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Wire/Wire.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ class TwoWire : public Stream
7171
bool transmissionBegun;
7272

7373
// RX Buffer
74-
RingBuffer rxBuffer;
74+
RingBufferN<256> rxBuffer;
7575

7676
//TX buffer
77-
RingBuffer txBuffer;
77+
RingBufferN<256> txBuffer;
7878
uint8_t txAddress;
7979

8080
// Callback user functions

0 commit comments

Comments
 (0)