From 4449f4eb8f678ba4b0dfb20cdcae20a8f3cefe86 Mon Sep 17 00:00:00 2001 From: Mark Suder Date: Wed, 8 Jan 2025 12:22:43 -0500 Subject: [PATCH] https://github.com/nasa/nos3/issues/438 - Change time ticker to 10 ticks per second / 0.1 seconds per time step / 100000 microseconds per tick. --- fsw/nos-linux/src/cfe_psp_start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsw/nos-linux/src/cfe_psp_start.c b/fsw/nos-linux/src/cfe_psp_start.c index ac2a0342..e937b04a 100644 --- a/fsw/nos-linux/src/cfe_psp_start.c +++ b/fsw/nos-linux/src/cfe_psp_start.c @@ -85,7 +85,7 @@ /* Constants used for NOS Engine Time and NOS Engine bus */ #define ENGINE_SERVER_URI "tcp://nos_engine_server:12000" #define ENGINE_BUS_NAME "command" -#define TICKS_PER_SECOND 100 +#define TICKS_PER_SECOND 10 NE_Bus *CFE_PSP_Bus; pthread_mutex_t CFE_PSP_sim_time_mutex; NE_SimTime CFE_PSP_sim_time;