diff options
Diffstat (limited to 'demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c')
-rw-r--r-- | demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c b/demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c index 522499fcc..459ac2e7a 100644 --- a/demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c +++ b/demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c @@ -59,7 +59,7 @@ void main(void) { /*
* Activates the serial driver 1 using the driver default configuration.
*/
- sdStart(&SD1, NULL);
+// sdStart(&SD1, NULL);
/*
* Creates the blinker thread.
@@ -70,8 +70,8 @@ void main(void) { * Normal main() thread activity.
*/
while (TRUE) {
- if (palReadPad(GPIOC, PC_BUTTON) == PAL_LOW)
- TestThread(&SD1);
+// if (palReadPad(GPIOC, PC_BUTTON) == PAL_LOW)
+// TestThread(&SD1);
chThdSleepMilliseconds(1000);
}
}
|