We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2c761 commit 52d156cCopy full SHA for 52d156c
sparkfun/samd/cores/arduino/RingBuffer.h
@@ -27,7 +27,9 @@
27
// using a ring buffer (I think), in which head is the index of the location
28
// to which to write the next incoming character and tail is the index of the
29
// location from which to read.
30
-#define SERIAL_BUFFER_SIZE 64
+#ifndef SERIAL_BUFFER_SIZE
31
+#define SERIAL_BUFFER_SIZE 256
32
+#endif
33
34
template <int N>
35
class RingBufferN
0 commit comments