diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-24 18:42:36 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-24 18:42:36 +0000 |
commit | 6f646de79be8c7f0bd1a0a147549c60734c53688 (patch) | |
tree | 55aa39116c77468116e49065d0d08ab5385657d5 /demos | |
parent | 17fa448323633b918bba239afa6454dbe46c41d8 (diff) | |
download | ChibiOS-6f646de79be8c7f0bd1a0a147549c60734c53688.tar.gz ChibiOS-6f646de79be8c7f0bd1a0a147549c60734c53688.tar.bz2 ChibiOS-6f646de79be8c7f0bd1a0a147549c60734c53688.zip |
It compiles, not tested and unfinished.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11179 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/STM32/RT-STM32H743I-NUCLEO144/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/STM32/RT-STM32H743I-NUCLEO144/main.c b/demos/STM32/RT-STM32H743I-NUCLEO144/main.c index c070cd9a9..98d13a7c6 100644 --- a/demos/STM32/RT-STM32H743I-NUCLEO144/main.c +++ b/demos/STM32/RT-STM32H743I-NUCLEO144/main.c @@ -29,9 +29,9 @@ static THD_FUNCTION(Thread1, arg) { (void)arg;
chRegSetThreadName("blinker");
while (true) {
- palSetLine(LINE_ARD_D13);
+// palSetLine(LINE_ARD_D13);
chThdSleepMilliseconds(500);
- palClearLine(LINE_ARD_D13);
+// palClearLine(LINE_ARD_D13);
chThdSleepMilliseconds(500);
}
}
@@ -54,8 +54,8 @@ int main(void) { /*
* ARD_D13 is programmed as output (board LED).
*/
- palClearLine(LINE_ARD_D13);
- palSetLineMode(LINE_ARD_D13, PAL_MODE_OUTPUT_PUSHPULL);
+// palClearLine(LINE_ARD_D13);
+// palSetLineMode(LINE_ARD_D13, PAL_MODE_OUTPUT_PUSHPULL);
/*
* Activates the serial driver 1 using the driver default configuration.
|