From ccd35a9ad7126be5a1c91b3842ee277c5c43bbe4 Mon Sep 17 00:00:00 2001 From: Stefan Rupp Date: Sat, 1 Mar 2014 18:39:07 +0100 Subject: [PATCH] starting with led1642 code --- led1642gw.c | 18 ++++++++++++++++++ led1642gw.h | 25 +++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 led1642gw.c create mode 100644 led1642gw.h diff --git a/led1642gw.c b/led1642gw.c new file mode 100644 index 0000000..bfdf031 --- /dev/null +++ b/led1642gw.c @@ -0,0 +1,18 @@ + +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this notice you + * can do whatever you want with this stuff. If we meet some day, and you think + * this stuff is worth it, you can buy me a beer in return. + * (c) 2014 Stefan Rupp + * ---------------------------------------------------------------------------- + */ + + + +void led1642_init(void) +{ + +} + diff --git a/led1642gw.h b/led1642gw.h new file mode 100644 index 0000000..68e8c6f --- /dev/null +++ b/led1642gw.h @@ -0,0 +1,25 @@ + +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this notice you + * can do whatever you want with this stuff. If we meet some day, and you think + * this stuff is worth it, you can buy me a beer in return. + * (c) 2014 Stefan Rupp + * ---------------------------------------------------------------------------- + */ + +#ifndef LED1642GW_H +#define LED1642GW_H + +#include +#include "timer.h" +#include + + +void led1642_init(void); + + + +#endif //LED1642GW_H +