SWDEV-301667 - Add LOG_TS mask

- Add LOG_TS mask for printing signal times
- Read raw ticks from signals

Change-Id: Ibdd0bf06c790729f6c65083a4784c97a3c3219e0
This commit is contained in:
Saleel Kudchadker
2024-04-25 22:44:29 +00:00
parent 1d48f2a1ab
commit 948ca5a931
2 changed files with 8 additions and 3 deletions
+1
View File
@@ -57,6 +57,7 @@ enum LogMask {
LOG_LOCATION = 65536, //!< (0x10000) Log message location
LOG_MEM = 131072, //!< (0x20000) Memory allocation
LOG_MEM_POOL = 262144, //!< (0x40000) Memory pool allocation, including memory in graphs
LOG_TS = 524288, //!< (0x80000) Timestamp details
LOG_ALWAYS = -1 //!< (0xFFFFFFFF) Log always even mask flag is zero
};