Revision 66d8e606a8d996ded60bc81d5edf319142a5fad9 authored by Ron Burkey on 04 October 2021, 11:49:55 UTC, committed by Ron Burkey on 04 October 2021, 11:49:55 UTC
2 parent s dfc2190 + 42c2282
Raw File
SimLuminary131_lite
#!/bin/bash
# This shell script runs the LM elements of the Virtual AGC 
# emulation for software version 131 of Luminary.  This "lite" version
# uses the DSKY simulation of the LM_Simulator program rather than yaDSKY.

# 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.

xterm -sb -geometry 72x1 -e \
  LM_Simulator --cfg=lm_simulator.ini &
PIDS="$!"
#xterm -sb -geometry 112x40 -e \
  yaAGC --core=Luminary131.bin --port=19797 --cfg=LM.ini $1 &
PIDS="$! ${PIDS}"
export PIDS

# Scan for any of the programs to exit.  
SimStop



back to top