Finished serial functions.

This commit is contained in:
Marvin Blum
2017-03-21 16:50:13 +01:00
parent 48cf07de97
commit 7fdf8c1dc1
6 changed files with 60 additions and 27 deletions

8
serial.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef SERIAL_H_
#define SERIAL_H_
void serial_init(unsigned int);
void serial_write(char*, unsigned int);
void serial_read(char*, unsigned int);
#endif