diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/PPC-SPC560B-GCC/main.c | 5 | ||||
-rw-r--r-- | demos/PPC-SPC560D-GCC/main.c | 19 | ||||
-rw-r--r-- | demos/PPC-SPC560D-GCC/mcuconf.h | 4 | ||||
-rw-r--r-- | demos/PPC-SPC563M-GCC/main.c | 8 | ||||
-rw-r--r-- | demos/PPC-SPC564A-GCC/main.c | 8 |
5 files changed, 25 insertions, 19 deletions
diff --git a/demos/PPC-SPC560B-GCC/main.c b/demos/PPC-SPC560B-GCC/main.c index 1c26fcd8d..afbc87b61 100644 --- a/demos/PPC-SPC560B-GCC/main.c +++ b/demos/PPC-SPC560B-GCC/main.c @@ -173,6 +173,11 @@ int main(void) { chSysInit();
/*
+ * Shell manager initialization.
+ */
+ shellInit();
+
+ /*
* Activates the serial driver 1 using the driver default configuration.
*/
sdStart(&SD1, NULL);
diff --git a/demos/PPC-SPC560D-GCC/main.c b/demos/PPC-SPC560D-GCC/main.c index b98716e94..afbc87b61 100644 --- a/demos/PPC-SPC560D-GCC/main.c +++ b/demos/PPC-SPC560D-GCC/main.c @@ -15,12 +15,11 @@ */
#include "ch.h"
-//#include "hal.h"
-//#include "test.h"
-//#include "shell.h"
-//#include "chprintf.h"
+#include "hal.h"
+#include "test.h"
+#include "shell.h"
+#include "chprintf.h"
-#if 0
#define SHELL_WA_SIZE THD_WA_SIZE(1024)
#define TEST_WA_SIZE THD_WA_SIZE(256)
@@ -86,7 +85,6 @@ static const ShellConfig shell_cfg1 = { (BaseSequentialStream *)&SD1,
commands
};
-#endif
/*
* LEDs blinker thread, times are in milliseconds.
@@ -162,7 +160,7 @@ static msg_t Thread1(void *arg) { * Application entry point.
*/
int main(void) {
-// Thread *shelltp = NULL;
+ Thread *shelltp = NULL;
/*
* System initializations.
@@ -175,6 +173,11 @@ int main(void) { chSysInit();
/*
+ * Shell manager initialization.
+ */
+ shellInit();
+
+ /*
* Activates the serial driver 1 using the driver default configuration.
*/
sdStart(&SD1, NULL);
@@ -188,14 +191,12 @@ int main(void) { * Normal main() thread activity.
*/
while (TRUE) {
-#if 0
if (!shelltp)
shelltp = shellCreate(&shell_cfg1, SHELL_WA_SIZE, NORMALPRIO);
else if (chThdTerminated(shelltp)) {
chThdRelease(shelltp); /* Recovers memory of the previous shell. */
shelltp = NULL; /* Triggers spawning of a new shell. */
}
-#endif
chThdSleepMilliseconds(1000);
}
return 0;
diff --git a/demos/PPC-SPC560D-GCC/mcuconf.h b/demos/PPC-SPC560D-GCC/mcuconf.h index 77848b23e..dd1deb91e 100644 --- a/demos/PPC-SPC560D-GCC/mcuconf.h +++ b/demos/PPC-SPC560D-GCC/mcuconf.h @@ -34,8 +34,8 @@ #define SPC5_ALLOW_OVERCLOCK FALSE
#define SPC5_DISABLE_WATCHDOG TRUE
#define SPC5_FMPLL0_IDF_VALUE 1
-#define SPC5_FMPLL0_NDIV_VALUE 32
-#define SPC5_FMPLL0_ODF SPC5_FMPLL_ODF_DIV4
+#define SPC5_FMPLL0_NDIV_VALUE 48
+#define SPC5_FMPLL0_ODF SPC5_FMPLL_ODF_DIV8
#define SPC5_XOSCDIV_VALUE 1
#define SPC5_IRCDIV_VALUE 1
#define SPC5_PERIPHERAL1_CLK_DIV_VALUE 2
diff --git a/demos/PPC-SPC563M-GCC/main.c b/demos/PPC-SPC563M-GCC/main.c index c903e96c2..d24db076c 100644 --- a/demos/PPC-SPC563M-GCC/main.c +++ b/demos/PPC-SPC563M-GCC/main.c @@ -135,14 +135,14 @@ int main(void) { chSysInit();
/*
- * Activates the serial driver 1 using the driver default configuration.
+ * Shell manager initialization.
*/
- sdStart(&SD1, NULL);
+ shellInit();
/*
- * Shell manager initialization.
+ * Activates the serial driver 1 using the driver default configuration.
*/
- shellInit();
+ sdStart(&SD1, NULL);
/*
* Creates the blinker thread.
diff --git a/demos/PPC-SPC564A-GCC/main.c b/demos/PPC-SPC564A-GCC/main.c index c903e96c2..d24db076c 100644 --- a/demos/PPC-SPC564A-GCC/main.c +++ b/demos/PPC-SPC564A-GCC/main.c @@ -135,14 +135,14 @@ int main(void) { chSysInit();
/*
- * Activates the serial driver 1 using the driver default configuration.
+ * Shell manager initialization.
*/
- sdStart(&SD1, NULL);
+ shellInit();
/*
- * Shell manager initialization.
+ * Activates the serial driver 1 using the driver default configuration.
*/
- shellInit();
+ sdStart(&SD1, NULL);
/*
* Creates the blinker thread.
|