Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 elmo 1
/* First version by Bjoern Biesenbach <bjoern@bjoern-b.de> */
2
#ifdef __SERIAL_H__
3
#define __SERIAL_H__
4
 
5
int open_port(const char *port);
6
void AddCRC(unsigned int wieviele);
7
void sende(int fd);
8
 
9
static void initSerial(const char *port);
10
static void SendOutData(unsigned char cmd,unsigned char modul, unsigned char *buffer, int len, int fd);
11
 
12
#endif