mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-01-11 18:33:16 +01:00
Formatting changes only.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user