8 lines
133 B
C
8 lines
133 B
C
#ifndef __SERIAL_H
|
|
#define __SERIAL_H
|
|
|
|
extern int init_serial();
|
|
extern char serial_read();
|
|
extern void serial_write(char c);
|
|
|
|
#endif |