diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-07-28 23:21:03 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-08-05 11:25:40 -0400 |
commit | 36217f27aa4ddd1303c4881af376a4b0a476c547 (patch) | |
tree | 881040437a219eb1bab0a4b10407e09220e8c227 /src/stm32f1/internal.h | |
parent | fe065d72d00319adcc7e27a392193733dc566922 (diff) | |
download | kutter-36217f27aa4ddd1303c4881af376a4b0a476c547.tar.gz kutter-36217f27aa4ddd1303c4881af376a4b0a476c547.tar.xz kutter-36217f27aa4ddd1303c4881af376a4b0a476c547.zip |
stm32f1: Remove now unused src/stm32f1/ directory
Now that the stm32f1 code has been merged into the stm32 code, there
is no longer a need to keep the stm32f1/ directory.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f1/internal.h')
-rw-r--r-- | src/stm32f1/internal.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/stm32f1/internal.h b/src/stm32f1/internal.h deleted file mode 100644 index 4c4394fd..00000000 --- a/src/stm32f1/internal.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef __STM32F1_INTERNAL_H -#define __STM32F1_INTERNAL_H -// Local definitions for STM32F1 code - -#include "stm32f1xx.h" - -#define GPIO(PORT, NUM) (((PORT)-'A') * 16 + (NUM)) -#define GPIO2PORT(PIN) ((PIN) / 16) - -extern GPIO_TypeDef *const digital_regs[]; -extern uint32_t const digital_pins[]; - -#endif // internal.h |