From cee0796a87afc735760e1f88a9fd68629b0350ad Mon Sep 17 00:00:00 2001 From: carlsa Date: Sun, 20 Jan 2019 05:00:43 +0100 Subject: [PATCH] Changed I2C buffer from 32 to 128 bytes to match Espressif's ESP32 Arduino core (#3576) --- libraries/Wire/Wire.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Wire/Wire.h b/libraries/Wire/Wire.h index e697bcca0..4687a8599 100644 --- a/libraries/Wire/Wire.h +++ b/libraries/Wire/Wire.h @@ -29,7 +29,7 @@ -#define BUFFER_LENGTH 32 +#define BUFFER_LENGTH 128 class TwoWire : public Stream {