aboutsummaryrefslogtreecommitdiffstats
path: root/demos/STM32/RT-STM32H743I-NUCLEO144/main.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-12-25 16:14:03 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-12-25 16:14:03 +0000
commit72c3417c88c7133ce4e38c49e7d25befea877131 (patch)
treef0e7383cf0e262182a3fa73c84b58ea8fb89225c /demos/STM32/RT-STM32H743I-NUCLEO144/main.c
parent7ae67eb81d4845cb7323f3699998d43e302abb78 (diff)
downloadChibiOS-72c3417c88c7133ce4e38c49e7d25befea877131.tar.gz
ChibiOS-72c3417c88c7133ce4e38c49e7d25befea877131.tar.bz2
ChibiOS-72c3417c88c7133ce4e38c49e7d25befea877131.zip
More H7-related changes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11182 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32H743I-NUCLEO144/main.c')
-rw-r--r--demos/STM32/RT-STM32H743I-NUCLEO144/main.c8
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 98d13a7c6..c070cd9a9 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.