git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1677 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2010-02-27 08:25:00 +00:00
parent 10b1366c43
commit 01f258f5e2
2 changed files with 3 additions and 1 deletions

View File

@ -179,6 +179,7 @@ int main(int argc, char **argv) {
chThdRelease(shelltp); /* Recovers memory of the previous shell. */ chThdRelease(shelltp); /* Recovers memory of the previous shell. */
shelltp = NULL; /* Triggers spawning of a new shell. */ shelltp = NULL; /* Triggers spawning of a new shell. */
} }
#if 0
if (SIU.GPDI[GPIO_BUTTON1].B.PDI) { if (SIU.GPDI[GPIO_BUTTON1].B.PDI) {
volatile msg_t result; volatile msg_t result;
#if 0 #if 0
@ -190,6 +191,7 @@ int main(int argc, char **argv) {
result = TestThread(&SD1); result = TestThread(&SD1);
#endif #endif
} }
#endif
chThdSleepMilliseconds(1000); chThdSleepMilliseconds(1000);
} }
return 0; return 0;

View File

@ -70,7 +70,7 @@
#elif PPC_VARIANT == PPC_VARIANT_e200z4 #elif PPC_VARIANT == PPC_VARIANT_e200z4
#define CH_CORE_VARIANT_NAME "e200z4" #define CH_CORE_VARIANT_NAME "e200z4"
#else #else
#error "unknown PowerPC variant specified" #error "unknown or unsupported PowerPC variant specified"
#endif #endif
/** /**