You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Some FSW apps require a wakeup event faster than 1Hz. When debugging these apps it is not ideal to be forced to deploy the full SCH, since its configuration is much more involved.
Describe the solution you'd like
Keep using SCH LAB which is intended for debugging apps, but be able to send wakeups faster than 1Hz.
Describe alternatives you've considered
Deploy full SCH (complicated, and a distraction from the real objective of debugging some other app).
Additional context
If CF is run at only 1Hz wakeup it would take a long time to transfer files.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
SCH_LAB was fixed at 1Hz because it bound to the 1Hz tick from CFE_TIME.
This creates an OSAL timer instead, which posts a semaphore, and this
can serve as a much more flexible time source, with configurable rate.
This still binds to 1Hz and the SCH does not start its first message
until the first 1Hz is received, thereby keeping some form of 1Hz sync.
SCH_LAB was fixed at 1Hz because it bound to the 1Hz tick from CFE_TIME.
This creates an OSAL timer instead, which posts a semaphore, and this
can serve as a much more flexible time source, with configurable rate.
This still binds to 1Hz and the SCH does not start its first message
until the first 1Hz is received, thereby keeping some form of 1Hz sync.
Is your feature request related to a problem? Please describe.
Some FSW apps require a wakeup event faster than 1Hz. When debugging these apps it is not ideal to be forced to deploy the full SCH, since its configuration is much more involved.
Describe the solution you'd like
Keep using SCH LAB which is intended for debugging apps, but be able to send wakeups faster than 1Hz.
Describe alternatives you've considered
Deploy full SCH (complicated, and a distraction from the real objective of debugging some other app).
Additional context
If CF is run at only 1Hz wakeup it would take a long time to transfer files.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: