@@ -732,7 +732,7 @@ struct os_flag_grp { /* Event Flag Group
732
732
CPU_TS TS ; /* Timestamp of when last post occurred */
733
733
#endif
734
734
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
735
- CPU_INT16U FlagID ; /* Unique ID for third-party debuggers and tracers. */
735
+ CPU_ADDR FlagID ; /* Unique ID for third-party debuggers and tracers. */
736
736
#endif
737
737
};
738
738
@@ -761,7 +761,7 @@ struct os_mem { /* MEMORY CONTROL BL
761
761
OS_MEM * DbgNextPtr ;
762
762
#endif
763
763
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
764
- CPU_INT16U MemID ; /* Unique ID for third-party debuggers and tracers. */
764
+ CPU_ADDR MemID ; /* Unique ID for third-party debuggers and tracers. */
765
765
#endif
766
766
};
767
767
@@ -804,7 +804,7 @@ struct os_msg_q { /* OS_MSG_Q
804
804
OS_MSG_QTY NbrEntriesMax ; /* Peak number of entries in the queue */
805
805
#endif
806
806
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
807
- CPU_INT16U MsgQID ; /* Unique ID for third-party debuggers and tracers. */
807
+ CPU_ADDR MsgQID ; /* Unique ID for third-party debuggers and tracers. */
808
808
#endif
809
809
};
810
810
@@ -839,7 +839,7 @@ struct os_mutex { /* Mutual Exclusion
839
839
CPU_TS TS ;
840
840
#endif
841
841
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
842
- CPU_INT16U MutexID ; /* Unique ID for third-party debuggers and tracers. */
842
+ CPU_ADDR MutexID ; /* Unique ID for third-party debuggers and tracers. */
843
843
#endif
844
844
};
845
845
@@ -926,7 +926,7 @@ struct os_sem { /* Semaphore
926
926
CPU_TS TS ;
927
927
#endif
928
928
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
929
- CPU_INT16U SemID ; /* Unique ID for third-party debuggers and tracers. */
929
+ CPU_ADDR SemID ; /* Unique ID for third-party debuggers and tracers. */
930
930
#endif
931
931
};
932
932
@@ -991,7 +991,7 @@ struct os_tcb {
991
991
CPU_TS TS ; /* Timestamp */
992
992
#endif
993
993
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
994
- CPU_INT16U SemID ; /* Unique ID for third-party debuggers and tracers. */
994
+ CPU_ADDR SemID ; /* Unique ID for third-party debuggers and tracers. */
995
995
#endif
996
996
OS_SEM_CTR SemCtr ; /* Task specific semaphore counter */
997
997
@@ -1064,7 +1064,7 @@ struct os_tcb {
1064
1064
CPU_CHAR * DbgNamePtr ;
1065
1065
#endif
1066
1066
#if (defined(OS_CFG_TRACE_EN ) && (OS_CFG_TRACE_EN > 0u ))
1067
- CPU_INT16U TaskID ; /* Unique ID for third-party debuggers and tracers. */
1067
+ CPU_ADDR TaskID ; /* Unique ID for third-party debuggers and tracers. */
1068
1068
#endif
1069
1069
};
1070
1070
0 commit comments