-
Notifications
You must be signed in to change notification settings - Fork 1.4k
rpc: Add command duration to rpc logging. #25587
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: main
Are you sure you want to change the base?
Conversation
|
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
CI InformationTo view the history of this post, click the 'edited' button above Inputs:Sources:sdk-nrf: PR head: bd3fcf5a7cd8844f023895dc02d86294aeb556d9 more detailssdk-nrf:
nrfxlib:
Github labels
List of changed files detected by CI (6)Outputs:ToolchainVersion: df3cc9d822 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
subsys/nrf_rpc/include/nrf_rpc_os.h
Outdated
|
|
||
| static inline uint64_t nrf_rpc_os_timestamp_get_now(void) | ||
| { | ||
| return k_uptime_get(); |
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.
ok, maybe one minor as k_uptime_get() returns a signed integer.
| return k_uptime_get(); | |
| return (uint64_t)k_uptime_get(); |
|
You can find the documentation preview for this PR here. |
0c0c3dd to
d3dd9f9
Compare
d3dd9f9 to
f9887d0
Compare
Added possibility to print RPC command duration. Time is printed as an INFO level log. Signed-off-by: Marek Porwisz <[email protected]>
f9887d0 to
bd3fcf5
Compare
Added possibility to print RPC command duration. Time is printed as an INFO level log.