Bug fixes.
This commit is contained in:
parent
d5e3a21e26
commit
92b6345f3e
|
@ -5,13 +5,13 @@ parameter debug is false.
|
||||||
local compiled is list(
|
local compiled is list(
|
||||||
"/lib/navigation",
|
"/lib/navigation",
|
||||||
"/lib/node",
|
"/lib/node",
|
||||||
"/lib/throttle"
|
"/lib/throttle",
|
||||||
|
"/prog/nodestats",
|
||||||
).
|
).
|
||||||
|
|
||||||
local copied is list(
|
local copied is list(
|
||||||
"/lib/ui",
|
"/lib/ui",
|
||||||
"/prog/execnode",
|
"/prog/execnode",
|
||||||
"/prog/nodestats",
|
|
||||||
"/prog/circ"
|
"/prog/circ"
|
||||||
).
|
).
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
runoncepath("/lib/node").
|
runoncepath("/lib/node").
|
||||||
|
|
||||||
if not HASNODE {
|
if HASNODE {
|
||||||
print "No node planned.".
|
|
||||||
return.
|
|
||||||
}
|
|
||||||
|
|
||||||
print "Node dV: " + NEXTNODE:DELTAV:MAG.
|
print "Node dV: " + NEXTNODE:DELTAV:MAG.
|
||||||
print "Burn time: " + BurnTime(NEXTNODE:DELTAV:MAG).
|
print "Burn time: " + BurnTime(NEXTNODE:DELTAV:MAG).
|
||||||
print "Lead time: " + BurnTime(NEXTNODE:DELTAV:MAG / 2).
|
print "Lead time: " + BurnTime(NEXTNODE:DELTAV:MAG / 2).
|
||||||
print "Node UT: " + NEXTNODE:TIME.
|
print "Node UT: " + NEXTNODE:TIME.
|
||||||
print "Node ETA: " + NEXTNODE:ETA.
|
print "Node ETA: " + NEXTNODE:ETA.
|
||||||
print "Will stage? " + choose "yes" if WillStage(NEXTNODE:DELTAV:MAG) else "no".
|
local stageStatus is choose "yes" if WillStage(NEXTNODE:DELTAV:MAG) else "no".
|
||||||
|
print "Will stage? " + stageStatus.
|
||||||
|
} else {
|
||||||
|
print "No node planned.".
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user