aboutsummaryrefslogtreecommitdiffstats
path: root/demos/ARM7-LPC214x-G++/board.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-04 12:00:18 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-04 12:00:18 +0000
commitf44bd871c77406f8e28047d9484cbabafa626040 (patch)
tree943b624cb77712767dfdfb63de149948c3d98eab /demos/ARM7-LPC214x-G++/board.c
parenta3bb2266cf4fc0c3b6deb6595bb992d30b698191 (diff)
downloadChibiOS-f44bd871c77406f8e28047d9484cbabafa626040.tar.gz
ChibiOS-f44bd871c77406f8e28047d9484cbabafa626040.tar.bz2
ChibiOS-f44bd871c77406f8e28047d9484cbabafa626040.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@459 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-G++/board.c')
-rw-r--r--demos/ARM7-LPC214x-G++/board.c20
1 files changed, 17 insertions, 3 deletions
diff --git a/demos/ARM7-LPC214x-G++/board.c b/demos/ARM7-LPC214x-G++/board.c
index 6f004ba29..8b17399e0 100644
--- a/demos/ARM7-LPC214x-G++/board.c
+++ b/demos/ARM7-LPC214x-G++/board.c
@@ -58,10 +58,11 @@ static void T0IrqHandler(void) {
}
/*
- * Hardware initialization goes here.
- * NOTE: Interrupts are still disabled.
+ * Early initialization code.
+ * This initialization is performed just after reset before BSS and DATA
+ * segments initialization.
*/
-void hwinit(void) {
+void hwinit0(void) {
/*
* All peripherals clock disabled by default in order to save power.
@@ -106,6 +107,14 @@ void hwinit(void) {
IO0SET = 0xFFFFFFFF;
IO1DIR = VAL_FIO1DIR;
IO1SET = 0xFFFFFFFF;
+}
+
+/*
+ * Late initialization code.
+ * This initialization is performed after BSS and DATA segments initialization
+ * and before invoking the main() function.
+ */
+void hwinit1(void) {
/*
* Interrupt vectors assignment.
@@ -132,4 +141,9 @@ void hwinit(void) {
// InitSSP();
// InitMMC();
// InitBuzzer();
+
+ /*
+ * ChibiOS/RT initialization.
+ */
+ chSysInit();
}