mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
c8a39f4a44
Removed the previous attempts at STL checkpointing. Removed the header files and sims. Also simplified the names of some of the templates. refs #206
23 lines
415 B
Python
23 lines
415 B
Python
|
|
def main():
|
|
|
|
#trick.echo_jobs_on()
|
|
|
|
#trick.sim_control_panel_set_enabled(True)
|
|
#trick.real_time_enable()
|
|
#trick.itimer_enable()
|
|
|
|
trick.checkpoint_pre_init(True)
|
|
#trick.checkpoint_post_init(True)
|
|
#trick.checkpoint_end(True)
|
|
|
|
#trick.freeze(2.0)
|
|
|
|
trick.exec_set_software_frame(0.10)
|
|
trick.exec_set_freeze_frame(0.10)
|
|
trick.stop(5.0)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|