swh:1:snp:79c9132b4a8931e989e318225e00e088ef6f383d
Raw File
Tip revision: 7a9ecb86ff67a3d695b32b6dd0f7365a42048516 authored by Ron Burkey on 30 December 2017, 02:10:37 UTC
Experimental stuff related to triggering 1201 or 1202 alarms on demand.
Tip revision: 7a9ecb8
SimColossus249
#!/bin/bash
# This shell script runs the CM elements of the Virtual AGC 
# emulation for software version 249 of Colossus

# What all the stuff with PIDS does is to record the process IDs of all the 
# programs we start.  We use this list to terminate all of them if any of 
# them terminates.

# Notice a lot of commented-out lines that say "xterm ...".  It's nicer in 
# a lot of ways to run these various apps inside of X-terminals, but opens
# up so incredibly many windows on the screen that I don't do it normally.
# Just remove the comment symbol from in front of any apps that you want in
# an xterm.  For example, if you want to run yaAGC with the --debug switch.

# If --test-downlink is used, always run yaDSKY in an xterm, or else 
# displaying the digital downlink lists will be really crummy..
xterm -geometry 80x43 -e yadsky $1 --cfg=CM.ini --test-downlink &
PIDS="$!"
xterm -sb -geometry 72x1 -e \
  LM_Simulator --cfg=lm_simulator_nodsky.ini --port=19701 &
PIDS="$! ${PIDS}"
#xterm -sb -geometry 112x40 -e \
  yaAGC --core=Colossus249.bin --cfg=CM.ini $2 &
PIDS="$! ${PIDS}"
export PIDS

# Scan for any of the programs to exit.  
SimStop


back to top