mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 01:05:54 +08:00
arch: Add up_perf_getfreq function
it's important to know the perf count frequency Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
8be9cb9f72
commit
ecccc614bd
@@ -388,6 +388,11 @@ uint32_t weak_function up_perf_gettime(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint32_t weak_function up_perf_getfreq(void)
|
||||
{
|
||||
return USEC_PER_SEC;
|
||||
}
|
||||
|
||||
void weak_function up_perf_convert(uint32_t elapsed, FAR struct timespec *ts)
|
||||
{
|
||||
timespec_from_usec(ts, elapsed);
|
||||
|
||||
@@ -437,6 +437,11 @@ uint32_t weak_function up_perf_gettime(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
uint32_t weak_function up_perf_getfreq(void)
|
||||
{
|
||||
return USEC_PER_SEC;
|
||||
}
|
||||
|
||||
void weak_function up_perf_convert(uint32_t elapsed, FAR struct timespec *ts)
|
||||
{
|
||||
timespec_from_usec(ts, elapsed);
|
||||
|
||||
Reference in New Issue
Block a user