1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Fixed issu con client.available to return the correct number of bytes

This commit is contained in:
Mimmo La Fauci
2013-03-16 12:33:50 +01:00
parent 901c908495
commit 85e0353588
4 changed files with 34 additions and 15 deletions

View File

@ -18,6 +18,9 @@
#define START_CMD 0xE0
#define END_CMD 0xEE
#define ERR_CMD 0xEF
#define CMD_POS 1 // Position of Command OpCode on SPI stream
#define PARAM_LEN_POS 2 // Position of Param len on SPI stream
enum {
SET_NET_CMD = 0x10,