mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 21:53:10 +00:00
16 lines
376 B
Python
16 lines
376 B
Python
|
import trick
|
||
|
|
||
|
def main():
|
||
|
trick.exec_set_job_onoff("the_object.stlc.addData", 1, True)
|
||
|
trick.exec_set_job_onoff("the_object.stlc.test", 1, False)
|
||
|
trick.exec_set_job_onoff("the_object.stlc.print", 1, False)
|
||
|
|
||
|
trick.add_read( 0.5, 'trick.checkpoint("chkpnt_in")')
|
||
|
|
||
|
trick.exec_set_freeze_frame(0.10)
|
||
|
trick.stop(1.0)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|
||
|
|