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.
Currently the TBL data structures use a mixture of TIME representations. In some cases it uses the CFE_TIME_SysTime_t value, and in other cases it uses two uint32 values.
Describe the solution you'd like
Use the CFE_TIME_SysTime_t representation of time consistently.
Describe alternatives you've considered
N/A
Additional context
Consistent use of the same data type for TIME representation allows data to be exchanged more easily and simplifies the code. The CFE_TIME_SysTime_t has getters and macros that support and simplify use of this type. These should be leveraged/used in TBL rather than repeating the logic.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
Use the CFE_TIME_SysTime_t type more consistently across TBL where
time is being stored. Avoid using seconds/subseconds directly.
This also adds an initializer value for CFE_TIME_SysTime_t that
has seconds/subseconds as zero.
Is your feature request related to a problem? Please describe.
Currently the TBL data structures use a mixture of TIME representations. In some cases it uses the
CFE_TIME_SysTime_t
value, and in other cases it uses twouint32
values.Describe the solution you'd like
Use the
CFE_TIME_SysTime_t
representation of time consistently.Describe alternatives you've considered
N/A
Additional context
Consistent use of the same data type for TIME representation allows data to be exchanged more easily and simplifies the code. The
CFE_TIME_SysTime_t
has getters and macros that support and simplify use of this type. These should be leveraged/used in TBL rather than repeating the logic.Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: