diff options
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();
/*
|