Subversion Repositories FlightCtrl

Rev

Rev 56 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 elmo 1
/* First version by Bjoern Biesenbach <bjoern@bjoern-b.de> */
2
#ifndef __MAIN_H__
3
#define __MAIN_H__
4
 
5
#define MAX_TX_BUFFER 150
6
 
7
static unsigned char TxBuffer[MAX_TX_BUFFER];
8
 
64 elmo 9
#ifndef EXIT_SUCCESS
10
        #define EXIT_SUCCESS 0
11
#endif
56 elmo 12
 
64 elmo 13
 
56 elmo 14
#endif