mirror of
https://github.com/nasa/trick.git
synced 2025-06-18 23:28:26 +00:00
Split test sims and fun sims into separate directories.
Moved the 2 thread directories. refs #191
This commit is contained in:
19
test/SIM_threads_simple/RUN_test/input.py
Normal file
19
test/SIM_threads_simple/RUN_test/input.py
Normal file
@ -0,0 +1,19 @@
|
||||
import os
|
||||
|
||||
def main():
|
||||
trick.real_time_enable()
|
||||
trick.itimer_enable()
|
||||
trick.exec_set_software_frame(0.10)
|
||||
trick.stop(10)
|
||||
|
||||
trick.exec_set_thread_process_type(1, trick.PROCESS_TYPE_AMF_CHILD)
|
||||
trick.exec_set_thread_amf_cycle_time(1, 0.5)
|
||||
thr_con = trick.exec_get_thread(1).trigger_container
|
||||
thr_con.setThreadTrigger(trick.TT_MUTEX)
|
||||
|
||||
trick.exec_set_thread_process_type(2, trick.PROCESS_TYPE_AMF_CHILD)
|
||||
trick.exec_set_thread_amf_cycle_time(2, 0.1)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
Reference in New Issue
Block a user