aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f0/internal.h
diff options
context:
space:
mode:
authorEug Krashtan <eug.krashtan@gmail.com>2019-12-28 13:29:10 +0200
committerKevin O'Connor <kevin@koconnor.net>2020-01-14 17:08:01 -0500
commitb70416167b9abdcafacea81e9ef92c509360f735 (patch)
tree7cf36ea0ea19ba2058c7a7457483c5d13eaab9b0 /src/stm32f0/internal.h
parenta34dbc7029fc9bbaabf8c13b2ef8f5f4052c12a2 (diff)
downloadkutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.gz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.xz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.zip
stm32f0: Remove hal based stm32f0 implementation
Signed-off-by: Eug Krashtan <eug.krashtan@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f0/internal.h')
-rw-r--r--src/stm32f0/internal.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stm32f0/internal.h b/src/stm32f0/internal.h
deleted file mode 100644
index 35c3000f..00000000
--- a/src/stm32f0/internal.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef __STM32F0_INTERNAL_H
-#define __STM32F0_INTERNAL_H
-// Local definitions for STM32F0 code
-
-#include "stm32f0xx.h"
-
-#define GPIO(PORT, NUM) (((PORT)-'A') * 16 + (NUM))
-#define GPIO2PORT(PIN) ((PIN) / 16)
-
-extern uint8_t const avail_pins[];
-
-void gpio_init(void);
-void TimerInit(void);
-
-#endif // internal.h