mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'contrib/github_pr_8578' into 'master'
Docs: fix speed code sample printf format specifiers (GitHub PR) Closes IDFGH-6958 See merge request espressif/esp-idf!17500
This commit is contained in:
commit
cfecf5917b
@ -42,7 +42,7 @@ Otherwise, one way to measure performance is to augment the code to take timing
|
||||
|
||||
uint64_t end = esp_timer_get_time();
|
||||
|
||||
printf("%u iterations took %ull milliseconds (%ull microseconds per invocation)\n",
|
||||
printf("%u iterations took %llu milliseconds (%llu microseconds per invocation)\n",
|
||||
MEASUREMENTS, (end - start)/1000, (end - start)/MEASUREMENTS);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user