MichaelEFlip
MichaelEFlip
I have the same problems here when using a TTGO T-DISPLAY (CONFIG_TFT_PREDEFINED_DISPLAY_TYPE = 5). Characters "p" and "g" in TFT_print cause immediate resets of the ESP32. Setting the default font...
I discovered this problem on a raspberry pi 4 with node-red and node-red-node-serialport. This problem cost me a lot of time as node-red crashed without error. The error seems to...
You have to create a own binary / compile latest version including this pull request. Otherwise assignment of custom pins does not work.
I have seen this behavior also on my new Ardusimple Board with the ESP32 XBEE. I would suggest the following selectable options: - Disable all transfers to the NTRIP caster...
You can disable sending anything to the NTRIP caster by doing the following change. This won't work for SAPOS Germany as they expect a position for the calculation of the...
I added a pull request with a config option to activate/deactivate UART forward to NTRIP server or socket server. Attention: This does not filter NMEA messages, it only blocks/enables all...
I discovered the same problem here and have no solution yet...
Several UART config items were loaded with a wrong data type. I added a fix in the following pull request: https://github.com/nebkat/esp32-xbee/pull/38
Late answer, but perhaps it helps others too. You have to change the following line in the source code: `self.server.bind((self.host, self.port))` --> `self.server.bind(('0.0.0.0', self.port))`
Similar problem here. Signing out from Google account did the trick here too.