From 6f646de79be8c7f0bd1a0a147549c60734c53688 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 24 Dec 2017 18:42:36 +0000 Subject: It compiles, not tested and unfinished. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11179 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/STM32/RT-STM32H743I-NUCLEO144/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'demos') 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. -- cgit v1.2.3