From efc1f5b4b4b4b8ca2906f58b287d703720f0953f Mon Sep 17 00:00:00 2001 From: MoDByte Date: Sat, 12 Jun 2021 10:42:16 +0200 Subject: [PATCH] Init --- template.c | 38 ++++++++++++++++++++++++++++++++++++++ template.h | 24 ++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 template.c create mode 100644 template.h diff --git a/template.c b/template.c new file mode 100644 index 0000000..3dfd8cd --- /dev/null +++ b/template.c @@ -0,0 +1,38 @@ +/****************************************************************************** +* INCLUDES +******************************************************************************/ +#include "template.h" + +/****************************************************************************** +* DEFINES +******************************************************************************/ + +/****************************************************************************** +* CONST +******************************************************************************/ + +/****************************************************************************** +* TYPEDEFS +******************************************************************************/ + +/****************************************************************************** +* GLOBALS +******************************************************************************/ + +/****************************************************************************** +* LOCALS +******************************************************************************/ + +/****************************************************************************** +* LOCAL FUNCTION FORWARD DECLARATIONS +******************************************************************************/ + +/****************************************************************************** +* FUNCTIONS +******************************************************************************/ +void vTemplateInit(void) +{ + +} + +/*********************************END OF FILE*********************************/ \ No newline at end of file diff --git a/template.h b/template.h new file mode 100644 index 0000000..b845c0b --- /dev/null +++ b/template.h @@ -0,0 +1,24 @@ +#ifndef TEMPLATE_H_ +#define TEMPLATE_H_ +/****************************************************************************** +* INCLUDES +******************************************************************************/ + +/****************************************************************************** +* DEFINES +******************************************************************************/ + +/****************************************************************************** +* TYPEDEFS +******************************************************************************/ + +/****************************************************************************** +* EXTERNAL DECLARATION OF GLOBAL VARIABLES +******************************************************************************/ + +/****************************************************************************** +* EXTERNAL DECLARATION OF FUNCTIONS +******************************************************************************/ + +/*********************************END OF FILE*********************************/ +#endif \ No newline at end of file