mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
24 lines
615 B
Python
24 lines
615 B
Python
|
|
||
|
import os
|
||
|
|
||
|
trick_sys.sched.set_enable_freeze(True)
|
||
|
trick_sys.sched.set_freeze_command(True)
|
||
|
|
||
|
simControlPanel = trick.SimControlPanel()
|
||
|
trick.add_external_application(simControlPanel)
|
||
|
|
||
|
trick.real_time_enable()
|
||
|
trick.itimer_enable()
|
||
|
|
||
|
trick.exec_set_software_frame(0.025)
|
||
|
|
||
|
trick.exec_set_thread_process_type(1, trick.PROCESS_TYPE_AMF_CHILD)
|
||
|
trick.exec_set_thread_amf_cycle_time(1, 0.05)
|
||
|
|
||
|
trick.exec_set_thread_process_type(2, trick.PROCESS_TYPE_AMF_CHILD)
|
||
|
trick.exec_set_thread_amf_cycle_time(2, 0.1)
|
||
|
|
||
|
trickView = trick.TrickView()
|
||
|
trickView.set_auto_open_file("overrun.tv")
|
||
|
trick.add_external_application(trickView)
|