Moved arduino specific C files and started working on PWM.

This commit is contained in:
Marvin Blum
2017-03-27 16:03:08 +02:00
parent 885fe1d624
commit bc2c6da436
6 changed files with 14 additions and 8 deletions

8
ard/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