One service that connect to serial (or RTT) and expose various UDP (or TCP) ports
Problem
Nowadays, if the user needs to connect on same serial port at same time, it's not possible. Also, if the user need to expose this serial port to internet, it's not possible.
Proposed solution
Allow user open Scope at deattach mode, using this --deattach flag at start-up. In this mode, the Scope opens in background and spawn a server with 2 ports: one for write (57005) and another for read (57006). When the read connects, the server redirects it to another port. So many connections could happens...
Alternatives considered
Fit with the project
- Intuitive: ;
- Compact and Orthogonal: ;
- Multiplatform: ;
- Extensible: .
One service that connect to serial (or RTT) and expose various UDP (or TCP) ports
Problem
Nowadays, if the user needs to connect on same serial port at same time, it's not possible. Also, if the user need to expose this serial port to internet, it's not possible.
Proposed solution
Allow user open Scope at
deattachmode, using this--deattachflag at start-up. In this mode, the Scope opens in background and spawn a server with 2 ports: one for write (57005) and another for read (57006). When the read connects, the server redirects it to another port. So many connections could happens...Alternatives considered
Fit with the project