diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-07 14:01:39 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-07 14:01:39 +0000 |
commit | d078530805bef8dd22a1a352007518edc0d6e993 (patch) | |
tree | 9ef31f1f28f55e616e16e2a45a2fe6f19b3715c9 /demos/PPC-SPC56EL-GCC | |
parent | 20d47035b0bec6d9e18d85bc635a6a495330a295 (diff) | |
download | ChibiOS-d078530805bef8dd22a1a352007518edc0d6e993.tar.gz ChibiOS-d078530805bef8dd22a1a352007518edc0d6e993.tar.bz2 ChibiOS-d078530805bef8dd22a1a352007518edc0d6e993.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5127 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/PPC-SPC56EL-GCC')
-rw-r--r-- | demos/PPC-SPC56EL-GCC/Makefile | 6 | ||||
-rw-r--r-- | demos/PPC-SPC56EL-GCC/main.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/demos/PPC-SPC56EL-GCC/Makefile b/demos/PPC-SPC56EL-GCC/Makefile index be14b2ad3..7561877cc 100644 --- a/demos/PPC-SPC56EL-GCC/Makefile +++ b/demos/PPC-SPC56EL-GCC/Makefile @@ -46,9 +46,9 @@ PROJECT = ch # Imported source files
CHIBIOS = ../..
-#include $(CHIBIOS)/boards/GENERIC_SPC560EL/board.mk
-#include $(CHIBIOS)/os/hal/platforms/SPC560ELxx/platform.mk
-#include $(CHIBIOS)/os/hal/hal.mk
+include $(CHIBIOS)/boards/GENERIC_SPC56EL/board.mk
+include $(CHIBIOS)/os/hal/platforms/SPC56ELxx/platform.mk
+include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/PPC/SPC56ELxx/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
#include $(CHIBIOS)/test/test.mk
diff --git a/demos/PPC-SPC56EL-GCC/main.c b/demos/PPC-SPC56EL-GCC/main.c index 538cfa482..890bdd9a3 100644 --- a/demos/PPC-SPC56EL-GCC/main.c +++ b/demos/PPC-SPC56EL-GCC/main.c @@ -19,7 +19,7 @@ */
#include "ch.h"
-//#include "hal.h"
+#include "hal.h"
//#include "test.h"
//#include "shell.h"
//#include "chprintf.h"
@@ -175,7 +175,7 @@ int main(void) { * - Kernel initialization, the main() function becomes a thread and the
* RTOS is active.
*/
-// halInit();
+ halInit();
chSysInit();
/*
|