Skip to content

Commit

Permalink
Merge branch 'pr/27' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
forg0ne committed Dec 2, 2022
2 parents 8c3b006 + b450eb8 commit 2926d13
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ struct os_flag_grp { /* Event Flag Group
CPU_TS TS; /* Timestamp of when last post occurred */
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U FlagID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR FlagID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down Expand Up @@ -761,7 +761,7 @@ struct os_mem { /* MEMORY CONTROL BL
OS_MEM *DbgNextPtr;
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U MemID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR MemID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down Expand Up @@ -804,7 +804,7 @@ struct os_msg_q { /* OS_MSG_Q
OS_MSG_QTY NbrEntriesMax; /* Peak number of entries in the queue */
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U MsgQID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR MsgQID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down Expand Up @@ -839,7 +839,7 @@ struct os_mutex { /* Mutual Exclusion
CPU_TS TS;
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U MutexID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR MutexID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down Expand Up @@ -926,7 +926,7 @@ struct os_sem { /* Semaphore
CPU_TS TS;
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U SemID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR SemID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down Expand Up @@ -991,7 +991,7 @@ struct os_tcb {
CPU_TS TS; /* Timestamp */
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U SemID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR SemID; /* Unique ID for third-party debuggers and tracers. */
#endif
OS_SEM_CTR SemCtr; /* Task specific semaphore counter */

Expand Down Expand Up @@ -1064,7 +1064,7 @@ struct os_tcb {
CPU_CHAR *DbgNamePtr;
#endif
#if (defined(OS_CFG_TRACE_EN) && (OS_CFG_TRACE_EN > 0u))
CPU_INT16U TaskID; /* Unique ID for third-party debuggers and tracers. */
CPU_ADDR TaskID; /* Unique ID for third-party debuggers and tracers. */
#endif
};

Expand Down

0 comments on commit 2926d13

Please sign in to comment.