16 lines
213 B
C
16 lines
213 B
C
|
/*
|
||
|
* rs232.h
|
||
|
*
|
||
|
* Created: 06.10.2013 16:34:17
|
||
|
* Author: netz
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#ifndef RS232_H_
|
||
|
#define RS232_H_
|
||
|
|
||
|
void init_rs232();
|
||
|
void rs232_send(char * text);
|
||
|
|
||
|
#endif /* RS232_H_ */
|