-
Hi all. After spending a lot of time with our "lab" setting FSW, I'm now trying to tickle with onboard-environment configurations. <xxx_platform_cfg.h>
<xxx_mission_cfg.h>
And after building with this configs the software just freezes after initialization. Nothing comes on the screen when it is supposed to! Thanks. (Below is the entire log until the freezing)
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
My time services configuration skills are a bit rusty, but I suspect it's due to setting If you've got a GPS with a 1PPS you can connect to the ISR this is your best bet, but time services is highly configurable (and unfortunately complex), so there's quite a few options. |
Beta Was this translation helpful? Give feedback.
My time services configuration skills are a bit rusty, but I suspect it's due to setting
CFE_MISSION_TIME_CFG_FAKE_TONE = false
which disables the fake/internal tone used for timekeeping. The core concept is time services uses a time at tone message (either time was or time will be) and a "tone" to synchronize time. If you turn off the fake tone, you need to connect the CFE_TIME_Tone1HzISR to a "real" tone (typically via the PSP through an interrupt.) This is the typical highest accuracy method of time keeping since time services keeps track of when the ISR is called, such that when the time at tone message arrives time can be updated without accuracy dependencies on when the actual time …