mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
202 B
C
15 lines
202 B
C
#include "lpc214x.h"
|
|
#include "bits.h"
|
|
|
|
#include "rs232.h"
|
|
|
|
void debug_putchar(int character)
|
|
{
|
|
UART1WriteChar(character);
|
|
}
|
|
|
|
void bl_uart_init(void)
|
|
{
|
|
UART1Initialize(115200U);
|
|
}
|