#include <types.h>
#include <errorCodes.h>
Go to the source code of this file.
Typedefs | |
typedef void(* | TimerFunction )(void *data) |
typedef _Timer * | Timer |
Functions | |
ErrorCode | timerSetFreq (uint32 freq) |
ErrorCode | timerGetFreq (uint32 *freq) |
ErrorCode | timerGetTicks (uint32 *ticks) |
ErrorCode | timerDelay (uint32 usec) |
ErrorCode | timerCreate (Timer *t, uint32 usec, TimerFunction func, void *data) |
ErrorCode | timerStart (Timer t) |
ErrorCode | timerStop (Timer t) |
ErrorCode | timerSetTimeout (Timer t, uint32 usec) |
ErrorCode | timerSetRepeat (Timer t, Boolean repeat) |
ErrorCode | timerDestroy (Timer *t) |