diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-06 15:40:31 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-02-06 15:40:31 +0000 |
commit | d0bb933c14e76536f4b170f5ceb81be0810fade6 (patch) | |
tree | d430a30325f19ce50c646975cd689368c4801cd6 | |
parent | 0095bbc32dfa5bec3399ee10faf0c7739c4d24c2 (diff) | |
download | ChibiOS-d0bb933c14e76536f4b170f5ceb81be0810fade6.tar.gz ChibiOS-d0bb933c14e76536f4b170f5ceb81be0810fade6.tar.bz2 ChibiOS-d0bb933c14e76536f4b170f5ceb81be0810fade6.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5123 35acf78f-673a-0410-8e92-d51de3d6d3f4
-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
|