1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +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
{