• I would like to be able to reconnect via serial after tcp connection has closed, it there a way to do it?

    // Telnet Server
      require("net").createServer(function (connection) {
        connection.pipe(LoopbackA);
        LoopbackA.pipe(connection);
        LoopbackB.setConsole();
        connection.on('close', function() {
          // TODO
        });
        if(!global.fullreset) {
          global.fullreset = global.reset;
          global.reset = softreset;
        }
      }).listen(23);
    
About

Avatar for heri16 @heri16 started