1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 14:37:30 +02:00
xburst-tools/xbboot/target-common/serial.h
Xiangfu Liu 14fb5adc49 [xbboot] cleanup files for jz4760
Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
2010-06-07 19:29:49 +08:00

20 lines
493 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.
//
#ifndef _SERIAL_H_
#define _SERIAL_H_
void serial_putc(char c);
void serial_puts(const char *s);
void serial_put_hex(unsigned int v);
int serial_getc();
int serial_tstc();
#endif