tim #6

Merged
Steins7 merged 16 commits from tim into dev 2024-11-03 12:07:39 +00:00
2 changed files with 33 additions and 0 deletions
Showing only changes of commit 3cbc836fe5 - Show all commits

18
drv/tim.c Normal file
View File

@ -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-------------------------------------------------------------

15
drv/tim.h Normal file
View File

@ -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_