Esempio n. 1
0
File: uart.c Progetto: 3a9LL/panda
void uart_init(void)
{
	uart_init_line(COM1, SERIAL_SPEED);
	uart_init_line(COM2, SERIAL_SPEED);
}
Esempio n. 2
0
int uart_init(int port, unsigned long speed)
{
        uart_init_line(port, speed);
	return -1;
}