diff options
-rw-r--r-- | demos/PPC-SPC56EL-GCC/main.c | 4 | ||||
-rw-r--r-- | os/ports/GCC/PPC/crt0.s | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/demos/PPC-SPC56EL-GCC/main.c b/demos/PPC-SPC56EL-GCC/main.c index 538cfa482..e9a95a7c1 100644 --- a/demos/PPC-SPC56EL-GCC/main.c +++ b/demos/PPC-SPC56EL-GCC/main.c @@ -176,7 +176,7 @@ int main(void) { * RTOS is active.
*/
// halInit();
- chSysInit();
+// chSysInit();
/*
* Activates the serial driver 1 using the driver default configuration.
@@ -198,7 +198,7 @@ int main(void) { // chThdRelease(shelltp); /* Recovers memory of the previous shell. */
// shelltp = NULL; /* Triggers spawning of a new shell. */
// }
- chThdSleepMilliseconds(1000);
+// chThdSleepMilliseconds(1000);
}
return 0;
}
diff --git a/os/ports/GCC/PPC/crt0.s b/os/ports/GCC/PPC/crt0.s index 560753c4a..ee6351a55 100644 --- a/os/ports/GCC/PPC/crt0.s +++ b/os/ports/GCC/PPC/crt0.s @@ -42,6 +42,7 @@ _boot_address: stwu %r0, -8(%r1)
/*
* IVPR initialization.
+ * TODO: Remove because it is in core.s now.
*/
lis %r4, __ivpr_base__@h
ori %r4, %r4, __ivpr_base__@l
|