summaryrefslogtreecommitdiff
path: root/include/serial.h
blob: 54c7211da36fc05e2a32b7991f17a16d9304b8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef SERIAL_H
#define SERIAL_H

void serial_setup(unsigned long baud);
void serial_putc(char);
int serial_getc(void);
uint_fast8_t serial_tstc(void);

#endif /* SERIAL_H */