Formatting changes only.

This commit is contained in:
Kelvin Lawson
2011-06-02 22:12:56 +01:00
parent 546990788d
commit fae8dd7516
2 changed files with 4 additions and 4 deletions

View File

@@ -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);
}
}

View File

@@ -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);
}
}