Setup tim's module backbone

This commit is contained in:
Steins7 2024-08-07 21:37:44 +02:00
parent 93f1b5a992
commit 3cbc836fe5
2 changed files with 33 additions and 0 deletions

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_