From 1c896f65532d63db24b89be95bf5af137d7ff5bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20Sandstr=C3=B6m?= Date: Wed, 6 Sep 2017 01:43:33 +0200 Subject: [PATCH] Changed I2C buffer from 32 to 128 bytes to match Espressif's ESP32 Arduino core --- 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 e14b90a521..7537daecda 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 {