From 3cbc836fe5b103618f8116335556bac36d6fcb92 Mon Sep 17 00:00:00 2001 From: Steins7 Date: Wed, 7 Aug 2024 21:37:44 +0200 Subject: [PATCH] Setup tim's module backbone --- drv/tim.c | 18 ++++++++++++++++++ drv/tim.h | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 drv/tim.c create mode 100644 drv/tim.h 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_ +