...
cpu_core.h/cpu_core.c
Prototype
Code Block |
---|
|
void CPU_TS_TmrFreqSet (CPU_TS_TMR_FREQ freq_hz); |
Arguments
freq_hz
Frequency (in Hertz) to set for CPU timestamp’s timer.
...
- CPU timestamp timer frequency is not required for internal CPU timestamp operations and may optionally be configured by application/BSP initialization functions for use with optional
CPU_TS_to_uSec()
functions to convert CPU timestamps from timer counts into microseconds (see CPU_TS32_to_uSec and CPU_TS64_to_uSec).
Example Usage
Anchor |
---|
| Listing - CPU_TS_TmrFreqSet() example usage |
---|
| Listing - CPU_TS_TmrFreqSet() example usage |
---|
|
Code Block |
---|
language | cpp |
---|
title | Listing - CPU_TS_TmrFreqSet() example usage |
---|
linenumbers | true |
---|
|
CPU_TS_TmrFreqSet(2500000u); /* Set CPU timestamp timer frequency to 2.5 MHz. */ |