From 25860dfb0d272fa93739a4b1e4a28b5d6a2c71b7 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Thu, 19 Mar 2020 20:43:42 +0100 Subject: [PATCH] Restrict baud rate on terminal emulators. Also use arrow characters on Datapoint. --- build/pdp10-ka/start | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/pdp10-ka/start b/build/pdp10-ka/start index 708fdd44..a00ee872 100755 --- a/build/pdp10-ka/start +++ b/build/pdp10-ka/start @@ -39,17 +39,17 @@ type340() { } datapoint() { - (sleep 2; tools/vt05/dp3300 -B telnet localhost 10020 >datapoint.log 2>&1) & + (sleep 2; tools/vt05/dp3300 -a -B -b 4800 telnet localhost 10020 >datapoint.log 2>&1) & started "Datapoint" "$!" } vt52() { - (sleep 2; tools/vt05/vt52 -B telnet localhost 10018 >vt52.log 2>&1) & + (sleep 2; tools/vt05/vt52 -B -b 9600 telnet localhost 10018 >vt52.log 2>&1) & started "VT52" "$!" } tek() { - (sleep 2; tools/tek4010/tek4010 telnet localhost 10017 >tek.log 2>&1) & + (sleep 2; tools/tek4010/tek4010 -b9600 telnet localhost 10017 >tek.log 2>&1) & started "Tektronix" "$!" }