mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 14:14:38 +02:00
19 lines
496 B
C
19 lines
496 B
C
//
|
|
// Authors: Wolfgang Spraul <wolfgang@sharism.cc>
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version
|
|
// 3 of the License, or (at your option) any later version.
|
|
//
|
|
|
|
#include "common-types.h"
|
|
|
|
extern u32 UART_BASE;
|
|
|
|
void serial_putc(char c);
|
|
void serial_puts(const char *s);
|
|
void serial_put_hex(unsigned int v);
|
|
int serial_getc();
|
|
int serial_tstc();
|