SignalK / SensESP

Universal Signal K sensor framework for the ESP32 platform
https://signalk.org/SensESP/
Apache License 2.0
154 stars 81 forks source link

Disable remote debugging by default #464

Closed mairas closed 2 years ago

mairas commented 3 years ago

SensESP has supported remote debugging over the wifi for a long time. Remote debugging works by telnetting to port 23. While handy, this feature is probably not widely known and it increases the memory footprint quite a bit.

This PR disables remote debugging by default, only leaving the serial port logging enabled. Since the upstream RemoteDebug library doesn't support this and has gone stale (presumedly, something unfortunate has happened to the author because all activity has ceased after June 2019), a partial interface-compatible reimplementation has been done in this PR. The reimplementation only supports serial debugging.

Fixes Issue #458.