-
Notifications
You must be signed in to change notification settings - Fork 1
Profiling task created #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
ChristyGuirguis
commented
Feb 7, 2026
- call FreeRTOS APIs to collect profile measurements
- included setup steps in readme
README.md
Outdated
| ### 2. Add profiling commands to ```HandleDebugMessage```: | ||
| ``` | ||
| #if (configGENERATE_RUN_TIME_STATS == 1) // enable profiling commands if profiling enabled | ||
| else if (strcmp(msg, "top") == 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is top for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"top" is the UART command to start profiling, "stoptop" is the UART command to stop.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wanted to ask what it stands for? Why not just profile? and stop profiling?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can change it to that. just initially wrote 'top' since it's similar to the command in linux and short to write
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah please change it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed