Skip to content
Snippets Groups Projects
Commit 395695b0 authored by Martino Facchin's avatar Martino Facchin Committed by Sandeep Mistry
Browse files

Increase Wire TX and RX buffer size to 256

parent 503a9b39
No related branches found
No related tags found
No related merge requests found
......@@ -71,10 +71,10 @@ class TwoWire : public Stream
bool transmissionBegun;
// RX Buffer
RingBuffer rxBuffer;
RingBufferN<256> rxBuffer;
//TX buffer
RingBuffer txBuffer;
RingBufferN<256> txBuffer;
uint8_t txAddress;
// Callback user functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment