25 lines
379 B
C
25 lines
379 B
C
/*
|
|
* eggTimer.h
|
|
*
|
|
* Created on: 08.09.2016
|
|
* Author: dehottgw
|
|
*/
|
|
|
|
#ifndef EGGTIMER_H_
|
|
#define EGGTIMER_H_
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint32_t EGG_TIMER_CYCLE;
|
|
|
|
|
|
|
|
void eggTimerInit(void *handleArg);
|
|
void eggTimerExec(void *handleArg);
|
|
void eggTimerStart(void *handleArg);
|
|
void eggTimerAlarm(void *handleArg);
|
|
|
|
|
|
#endif /* EGGTIMER_H_ */
|