ESP8266 - fixed debug macro
This commit is contained in:
parent
514c96ea8a
commit
4b5159afb4
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ size_t ESP8266::receive(uint8_t* data, uint32_t timeout) {
|
|||
while(millis() - start < timeout) {
|
||||
while(_mod->ModuleSerial->available() > 0) {
|
||||
uint8_t b = _mod->ModuleSerial->read();
|
||||
DEBUG_PRINT(c);
|
||||
DEBUG_PRINT(b);
|
||||
data[i] = b;
|
||||
i++;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue