summaryrefslogtreecommitdiff
path: root/rcc/syscfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'rcc/syscfg.h')
-rw-r--r--rcc/syscfg.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/rcc/syscfg.h b/rcc/syscfg.h
deleted file mode 100644
index 74c3a07..0000000
--- a/rcc/syscfg.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef SYSCFG_H
-#define SYSCFG_H
-
-#include <stdint.h>
-
-struct SYSCFG_t {
- volatile uint32_t MEMRM;
- volatile uint32_t PMC;
- volatile uint32_t EXTICR[4];
- volatile uint32_t CMPCR;
-};
-
-#if defined(STM32F4)
-static SYSCFG_t& SYSCFG = *(SYSCFG_t*)0x40013800;
-#endif
-
-void rcc_init();
-
-#endif