-->
Page 2 of 3

Re: Software Serial

PostPosted: Sat Aug 08, 2015 2:51 am
by Scottwday
I also wrote a receiver-only software serial library for a project I was working on before checking properly if someone else had already written one :roll: oh well! https://github.com/scottwday/EspSoftSerial if anyone's interested.

Re: Software Serial

PostPosted: Thu Oct 22, 2015 9:20 pm
by jpatrick62
Does anyone know if UART1 can be remapped off GPIO2? I use UART0 to communicate with a Teensy3.1 (not AT commands, basically a inter-processor communications channel), so I generally use GPIO2 to debug. Unfortunately, if you add a SPI device (such as a SPI OLED), using GPIO2 as a debug is a very bad idea as it causes the 8266 to hang and the watchdog timer reboots the chip. :roll:

Re: Software Serial

PostPosted: Thu Oct 22, 2015 9:47 pm
by kolban
There is an API called system_set_os_print() which disables debugging ... might this be what you are looking for?

Re: Software Serial

PostPosted: Fri Oct 23, 2015 5:44 am
by schufti
hmmm, isn't it be "off" by default to not interfere with the "standard" use of gpio's?

quote "By default the diagnostic output from WiFi libraries is disabled when you call Serial.begin."