diff --git a/drv/tim.c b/drv/tim.c new file mode 100644 index 0000000..813c4ee --- /dev/null +++ b/drv/tim.c @@ -0,0 +1,18 @@ +/** @file tim.c + * Module handling general purpose and advances TIMers + */ + +//--includes-------------------------------------------------------------------- + +#include "tim.h" +#include "tim_regs.h" + + +//--local definitions----------------------------------------------------------- + +//--local variables------------------------------------------------------------- + +//--public functions------------------------------------------------------------ + +//--local functions------------------------------------------------------------- + diff --git a/drv/tim.h b/drv/tim.h new file mode 100644 index 0000000..d57ed78 --- /dev/null +++ b/drv/tim.h @@ -0,0 +1,15 @@ +/** @file tim.h + * Module handling general purpose and advances TIMers + */ + +#ifndef _TIM_H_ +#define _TIM_H_ + +//--includes-------------------------------------------------------------------- + +//--type definitions------------------------------------------------------------ + +//--functions------------------------------------------------------------------- + +#endif //_TIM_H_ +