mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
Fix arg type in Wire to size_t (#5289)
This commit is contained in:
@ -47,7 +47,7 @@ class TwoWire : public Stream
|
||||
static void (*user_onRequest)(void);
|
||||
static void (*user_onReceive)(int);
|
||||
static void onRequestService(void);
|
||||
static void onReceiveService(uint8_t*, int);
|
||||
static void onReceiveService(uint8_t*, size_t);
|
||||
public:
|
||||
TwoWire();
|
||||
void begin(int sda, int scl);
|
||||
|
Reference in New Issue
Block a user