Subversion Repositories FlightCtrl

Rev

Rev 991 | Rev 1036 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 991 Rev 992
Line 77... Line 77...
77
 unsigned char Chksum;
77
 unsigned char Chksum;
78
};
78
};
Line 79... Line 79...
79
 
79
 
80
#define SPI_CMD_OSD_DATA         100
80
#define SPI_CMD_OSD_DATA         100
81
#define SPI_CMD_GPS_POS          101
81
#define SPI_CMD_GPS_POS          101
-
 
82
#define SPI_CMD_GPS_TARGET   102
-
 
83
#define SPI_KALMAN           103
82
#define SPI_CMD_GPS_TARGET   102 
84
 
83
struct str_FromNaviCtrl
85
struct str_FromNaviCtrl
84
{
86
{
85
 unsigned char Command;
87
 unsigned char Command;
86
  signed int  GPS_Nick;
88
  signed int  GPS_Nick;
Line 100... Line 102...
100
 
102
 
101
struct str_FromNaviCtrl_Value
103
struct str_FromNaviCtrl_Value
102
{
104
{
103
 signed int OsdBar;
105
 signed int OsdBar;
-
 
106
 signed int Distance;
-
 
107
 signed char Kalman_K;
-
 
108
 signed char Kalman_MaxDrift;
104
 signed int Distance;
109
 signed char Kalman_MaxFusion;
Line 105... Line 110...
105
};
110
};
Line 106... Line 111...
106
 
111