We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a246b commit e46c80dCopy full SHA for e46c80d
Adafruit_SSD1306.cpp
@@ -61,7 +61,8 @@
61
#elif defined(BUFFER_LENGTH)
62
#define WIRE_MAX min(256, BUFFER_LENGTH) ///< AVR or similar Wire lib
63
#elif defined(SERIAL_BUFFER_SIZE)
64
-#define WIRE_MAX min(255, SERIAL_BUFFER_SIZE - 1) ///< Newer Wire uses RingBuffer
+#define WIRE_MAX \
65
+ min(255, SERIAL_BUFFER_SIZE - 1) ///< Newer Wire uses RingBuffer
66
#else
67
#define WIRE_MAX 32 ///< Use common Arduino core default
68
#endif
0 commit comments