From 9363133fd8880d60cfa01c4e0e7e183fb2b4079e Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sat, 19 Nov 2011 18:27:38 +0100 Subject: Add hal_init() to abstract away RCC from entry.cpp. --- entry.cpp | 6 +++--- hal/hal.h | 10 ++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 hal/hal.h diff --git a/entry.cpp b/entry.cpp index 5a30175..ae58404 100644 --- a/entry.cpp +++ b/entry.cpp @@ -1,5 +1,5 @@ #include -#include "rcc.h" +#include int main(); @@ -17,8 +17,8 @@ extern funcp_t _fini_array_start; extern funcp_t _fini_array_end; void __attribute__((naked)) entry() { - // Initialize clock. - rcc_init(); + // Initialize HAL. + hal_init(); // Load .data from rom image. uint32_t* rp = &_data_rom; diff --git a/hal/hal.h b/hal/hal.h new file mode 100644 index 0000000..4076df3 --- /dev/null +++ b/hal/hal.h @@ -0,0 +1,10 @@ +#ifndef HAL_H +#define HAL_H + +#include "rcc.h" + +void hal_init() { + rcc_init(); +} + +#endif -- cgit v1.2.3