12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef OS_COUNTER_API_H
- #define OS_COUNTER_API_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "Os_counter_types.h"
- extern StatusType GetCounterValue (CounterType ctrId, TickRefType tickRef);
- extern StatusType GetElapsedValue (CounterType ctrId, TickRefType valueRef, TickRefType tickRef);
- #ifdef __cplusplus
- }
- #endif
- #endif
|