2.15.30 CLOCK_MonitorAccumulatedCountGet Function
C
inline static uint32_t CLOCK_MonitorAccumulatedCountGet(CLOCK_MONITOR monitor);
Summary
Returns the accumulated data.
Description
This inline function returns the accumulated data after the capture.
Precondition
CLOCK_MonitorIsReady Function to be called before calling this function in non-interrupt operation
Parameters
Param | Description |
---|---|
monitor | instance of clock monitor |
Returns
Captured count
Example
uint32_t countValue;
countValue = CLOCK_MonitorAccumulatedCountGet(CLOCK_MONITOR_2);
Remarks
None.