Skip to content

Commit bf5eaa5

Browse files
authored
Update drv_tuyaMCU.c (#2011)
zmiana ze 192 na256, void TuyaMCU_RunReceive() byte data[256]; ze względu na pojawiający sie log : Info:TuyaMCU:TuyaMCU packet too large, 204 > 192
1 parent 3edb261 commit bf5eaa5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/driver/drv_tuyaMCU.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2391,7 +2391,7 @@ void TuyaMCU_PrintPacket(byte *data, int len) {
23912391
#endif
23922392
}
23932393
void TuyaMCU_RunReceive() {
2394-
byte data[192];
2394+
byte data[256];
23952395
int len;
23962396
while (1)
23972397
{

0 commit comments

Comments
 (0)