1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-20 10:24:18 +03:00

Changed I2C buffer from 32 to 128 bytes to match Espressif's ESP32 Arduino core (#3576)

This commit is contained in:
carlsa
2019-01-20 05:00:43 +01:00
committed by Develo
parent 049a9eaa5b
commit cee0796a87

View File

@ -29,7 +29,7 @@
#define BUFFER_LENGTH 32
#define BUFFER_LENGTH 128
class TwoWire : public Stream
{