1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-06 05:21:22 +03:00

Adding custom buffer_length using I2C_BUFFER_LENGTH (#8390)

* Adding custom buffer_length using I2C_BUFFER_LENGTH
This commit is contained in:
Alexandre-Jacques St-Jacques 2021-12-01 16:31:28 -05:00 committed by GitHub
parent 2492057b61
commit 0f231b1c23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,11 @@
#ifndef I2C_BUFFER_LENGTH
#define BUFFER_LENGTH 128
#else
#define BUFFER_LENGTH I2C_BUFFER_LENGTH
#endif
class TwoWire : public Stream
{