Fix coding conventions in uart0.c

dev/timer
Martin Lenders 10 years ago
parent 69809928d3
commit 04b9d7a158

@ -32,13 +32,13 @@ void board_uart0_init(void)
{
ringbuffer_init(&uart0_ringbuffer, buffer, UART0_BUFSIZE);
int pid = thread_create(
uart0_thread_stack,
sizeof(uart0_thread_stack),
PRIORITY_MAIN - 1,
CREATE_STACKTEST|CREATE_SLEEPING,
uart0_loop,
"uart0"
);
uart0_thread_stack,
sizeof(uart0_thread_stack),
PRIORITY_MAIN - 1,
CREATE_STACKTEST | CREATE_SLEEPING,
uart0_loop,
"uart0"
);
uart0_handler_pid = pid;
thread_wakeup(pid);
puts("uart0_init() [OK]");

Loading…
Cancel
Save