Subversion Repositories Projects

Rev

Rev 505 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 505 Rev 522
Line -... Line 1...
-
 
1
#ifndef FC_H
1
 
2
#define FC_H
Line 2... Line 3...
2
 
3
 
3
#include <stdio.h>
4
#include <stdio.h>
4
#include <termios.h>
5
#include <termios.h>
5
#include <sys/socket.h>
6
#include <sys/socket.h>
Line 37... Line 38...
37
  //# signed int
38
  //# signed int
Line 38... Line 39...
38
 
39
 
39
uint16_t Analog[32];    // Debugwert//
40
uint16_t Analog[32];    // Debugwert//
Line -... Line 41...
-
 
41
};
-
 
42
 
-
 
43
 
-
 
44
struct str_VersionInfo
-
 
45
{
-
 
46
  unsigned char SWMajor;
-
 
47
  unsigned char SWMinor;
-
 
48
  unsigned char ProtoMajor;
-
 
49
  unsigned char ProtoMinor;
-
 
50
  unsigned char SWPatch;
-
 
51
  unsigned char Reserved[5];
-
 
52
};
40
};
53
 
Line 41... Line 54...
41
 
54
 
42
struct str_DebugOut    DebugOut;
55
struct str_DebugOut    DebugOut;
Line 59... Line 72...
59
#define MAX_BUFF_LEN 150
72
#define MAX_BUFF_LEN 150
Line 60... Line 73...
60
 
73
 
61
extern unsigned char RxBuffer[MAX_BUFF_LEN ];
74
extern unsigned char RxBuffer[MAX_BUFF_LEN ];
62
extern char PrintableRxBuffer[MAX_BUFF_LEN ];
75
extern char PrintableRxBuffer[MAX_BUFF_LEN ];
-
 
76
extern int rx_last_length;
-
 
77
 
-
 
78