diff options
Diffstat (limited to 'demos')
-rw-r--r-- | demos/SPC5/NIL-SPC560D-EVB/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/demos/SPC5/NIL-SPC560D-EVB/main.c b/demos/SPC5/NIL-SPC560D-EVB/main.c index 0e3ad525e..05b7737c1 100644 --- a/demos/SPC5/NIL-SPC560D-EVB/main.c +++ b/demos/SPC5/NIL-SPC560D-EVB/main.c @@ -26,9 +26,16 @@ static THD_FUNCTION(Thread1, arg) { (void)arg;
+ /*
+ * Activates the serial driver 1 using the driver default configuration.
+ */
+ sdStart(&SD1, NULL);
+
while (TRUE) {
unsigned i;
+ chnWriteTimeout(&SD1, (uint8_t *)"Hello World!\r\n", 14, TIME_INFINITE);
+
for (i = 0; i < 4; i++) {
palClearPad(PORT_E, PE_LED1);
chThdSleepMilliseconds(100);
|