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

Disable debug output in Serial.begin

This commit is contained in:
Ivan Grokhotkov
2014-12-12 04:41:24 +03:00
parent 73b0e8b1ff
commit 36fbb75d48

View File

@ -221,6 +221,7 @@ void ICACHE_FLASH_ATTR HardwareSerial::begin(unsigned long baud, byte config)
{
_uart = uart0_init(baud, &serial_rx_handler);
_written = false;
uart_set_debug(0);
}
void ICACHE_FLASH_ATTR HardwareSerial::end()