Replace custom python connector with ncat (#42)

* Replace custom made daemon with nmap-ncat

* Use stderr to log ncat output

* Refresh the branch
This commit is contained in:
2025-01-15 18:30:36 +01:00
committed by GitHub
parent 1e7f72e9ec
commit 90211562f9
15 changed files with 84 additions and 197 deletions

11
connector/simulator/start.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
PTY=0
# if container is run with -ti pts/0 is already taken
if [ -c /dev/pts/0 ]; then
PTY=1
fi
qemu-system-avr -machine uno -bios /io/CommandStation-EX*.elf -serial pty -daemonize
ncat -n -k -l 2560 -o /dev/stderr </dev/pts/${PTY} >/dev/pts/${PTY}