aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM8L-STM8L152-DISCOVERY-STVD
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-12 23:07:49 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-11-12 23:07:49 +0000
commit688c495b28d6307050f370717c295f2f889e3b3c (patch)
tree2034ea9abf4edf78c4499e46272b2c63fed4f302 /demos/STM8L-STM8L152-DISCOVERY-STVD
parent9e53be4d3ccbd10f89bd14352c68d9c1b1dae80e (diff)
downloadChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.tar.gz
ChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.tar.bz2
ChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2355 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM8L-STM8L152-DISCOVERY-STVD')
-rw-r--r--demos/STM8L-STM8L152-DISCOVERY-STVD/demo/main.c6
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);
}
}