-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions on how to add trace events (#16393)
* Add instructions on how to add trace events * Restyled by prettier-markdown * Add words to wordlist Co-authored-by: Restyled.io <[email protected]>
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Matter tracing | ||
|
||
Matter tracing provides a tool for applications to trace information about the | ||
execution of the application. It depends on | ||
[pw_trace module](https://pigweed.dev/pw_trace/). | ||
|
||
## How to add trace events | ||
|
||
1. Include "trace/trace.h" in the source file. | ||
2. Add "\${chip_root}/src/trace" as deps in BUILD.gn. | ||
3. Add MATTER*TRACE_EVENT*\* in functions to be traced. | ||
|
||
## Example | ||
|
||
``` | ||
#include "pw_trace/trace.h" | ||
void SendButton() { | ||
MATTER_TRACE_EVENT_FUNCTION(); | ||
// do something | ||
} | ||
void InputLoop() { | ||
while(1) { | ||
auto event = WaitNewInputEvent() | ||
MATTER_TRACE_EVENT_SCOPE("Handle Event"); // measure until loop finished | ||
if (event == kNewButton){ | ||
SendButton(); | ||
MATTER_TRACE_EVENT_END("button"); // Trace event was started in ButtonIsr | ||
} else { | ||
MATTER_TRACE_EVENT_INSTANT("Unknown event"); | ||
} | ||
} | ||
} | ||
void ButtonIsr() { | ||
MATTER_TRACE_EVENT_START("button"); | ||
SendNewInputEvent(kNewButton); | ||
} | ||
``` |