From fae8dd7516eb43111736079b7884519136a044ee Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Thu, 2 Jun 2011 22:12:56 +0100 Subject: [PATCH] Formatting changes only. --- ports/avr/tests-main.c | 4 ++-- ports/stm8/tests-main.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ports/avr/tests-main.c b/ports/avr/tests-main.c index 9cb5596..a634167 100644 --- a/ports/avr/tests-main.c +++ b/ports/avr/tests-main.c @@ -245,7 +245,7 @@ static void main_thread_func (uint32_t data) stdout = &uart_stdout; /* Put a message out on the UART */ - printf_P(PSTR("Go\n")); + printf_P (PSTR("Go\n")); /* Start test. All tests use the same start API. */ test_status = test_start(); @@ -295,7 +295,7 @@ static void main_thread_func (uint32_t data) PORTB ^= (1 << 7); /* Sleep then toggle LED again */ - atomTimerDelay(sleep_ticks); + atomTimerDelay (sleep_ticks); } } diff --git a/ports/stm8/tests-main.c b/ports/stm8/tests-main.c index 21b6d4d..6b24bf2 100644 --- a/ports/stm8/tests-main.c +++ b/ports/stm8/tests-main.c @@ -201,7 +201,7 @@ static void main_thread_func (uint32_t param) } /* Put a message out on the UART */ - printf("Go\n"); + printf ("Go\n"); /* Start test. All tests use the same start API. */ test_status = test_start(); @@ -255,7 +255,7 @@ static void main_thread_func (uint32_t param) GPIO_WriteReverse(GPIOD, GPIO_PIN_0); /* Sleep then toggle LED again */ - atomTimerDelay(sleep_ticks); + atomTimerDelay (sleep_ticks); } }