Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2751 | - | 1 | // ######################## SPI - FlightCtrl ################### |
2 | #ifndef _SPI_H |
||
3 | #define _SPI_H |
||
4 | |||
5 | #include <util/delay.h> |
||
6 | #include "vector.h" |
||
7 | |||
8 | #define USE_SPI_COMMUNICATION |
||
9 | #define SPI_BYTEGAP 3 |
||
10 | //----------------------------------------- |
||
11 | #define DDR_SPI DDRB |
||
12 | #define SLAVE_SELECT_DDR_PORT DDRC |
||
13 | #define SLAVE_SELECT_PORT PORTC |
||
14 | |||
15 | #if defined(__AVR_ATmega1284P__) |
||
16 | #define DD_SS PORTB4 |
||
17 | #define DD_SCK PORTB7 |
||
18 | #define DD_MOSI PORTB5 |
||
19 | #define DD_MISO PORTB6 |
||
20 | #define SPI_SLAVE_SELECT PORTC5 |
||
21 | #else |
||
22 | #define DD_SS PB4 |
||
23 | #define DD_SCK PB7 |
||
24 | #define DD_MOSI PB5 |
||
25 | #define DD_MISO PB6 |
||
26 | #define SPI_SLAVE_SELECT PC5 |
||
27 | #endif |
||
28 | |||
29 | // for compatibility reasons gcc3.x <-> gcc4.x |
||
30 | #ifndef SPCR |
||
31 | #define SPCR SPCR0 |
||
32 | #endif |
||
33 | #ifndef SPE |
||
34 | #define SPE SPE0 |
||
35 | #endif |
||
36 | #ifndef MSTR |
||
37 | #define MSTR MSTR0 |
||
38 | #endif |
||
39 | #ifndef SPR1 |
||
40 | #define SPR1 SPR01 |
||
41 | #endif |
||
42 | #ifndef SPR0 |
||
43 | #define SPR0 SPR00 |
||
44 | #endif |
||
45 | #ifndef SPIE |
||
46 | #define SPIE SPIE0 |
||
47 | #endif |
||
48 | #ifndef SPDR |
||
49 | #define SPDR SPDR0 |
||
50 | #endif |
||
51 | #ifndef SPIF |
||
52 | #define SPIF SPIF0 |
||
53 | #endif |
||
54 | #ifndef SPSR |
||
55 | #define SPSR SPSR0 |
||
56 | #endif |
||
57 | // ------------------------- |
||
58 | |||
59 | #define SPI_FCCMD_USER 10 |
||
60 | #define SPI_FCCMD_STICK 11 |
||
61 | #define SPI_FCCMD_MISC 12 |
||
62 | #define SPI_FCCMD_PARAMETER1 13 |
||
63 | #define SPI_FCCMD_VERSION 14 |
||
64 | #define SPI_FCCMD_SERVOS 15 |
||
65 | #define SPI_FCCMD_BL_ACCU 16 |
||
66 | #define SPI_FCCMD_PARAMETER2 17 |
||
67 | |||
68 | struct str_ToNaviCtrl |
||
69 | { |
||
70 | unsigned char Sync1, Sync2; |
||
71 | unsigned char Command; |
||
72 | signed int IntegralNick; |
||
73 | signed int IntegralRoll; |
||
74 | signed int AccNick; |
||
75 | signed int AccRoll; |
||
76 | signed int GyroCompass; |
||
77 | signed int GyroNick; |
||
78 | signed int GyroRoll; |
||
79 | signed int GyroGier; |
||
80 | unsigned int FCStatus; |
||
81 | union |
||
82 | { |
||
83 | unsigned char Byte[12]; |
||
84 | char sByte[12]; |
||
85 | unsigned int Int[6]; |
||
86 | int sInt[6]; |
||
87 | unsigned long Long[3]; |
||
88 | long sLong[3]; |
||
89 | float Float[3]; |
||
90 | } Param; |
||
91 | unsigned char Chksum; |
||
92 | }; |
||
93 | |||
94 | #define SPI_NCCMD_KALMAN 103 |
||
95 | #define SPI_NCCMD_VERSION 104 |
||
96 | #define SPI_NCCMD_GPSINFO 105 |
||
97 | #define SPI_NCCMD_HOTT_DATA 106 |
||
98 | #define SPI_MISC 107 |
||
99 | |||
100 | struct str_FromNaviCtrl |
||
101 | { |
||
102 | unsigned char Command; |
||
103 | signed int GPS_Nick; |
||
104 | signed int GPS_Roll; |
||
105 | signed int MagVecX; |
||
106 | signed int CompassValue; |
||
107 | signed int AccErrorN; |
||
108 | signed int AccErrorR; |
||
109 | signed int MagVecY; |
||
110 | signed int MagVecZ; |
||
111 | unsigned int BeepTime; |
||
112 | union |
||
113 | { |
||
114 | unsigned char Byte[12]; |
||
115 | char sByte[12]; |
||
116 | unsigned int Int[6]; |
||
117 | int sInt[6]; |
||
118 | unsigned long Long[3]; |
||
119 | long sLong[3]; |
||
120 | float Float[3]; |
||
121 | } Param; |
||
122 | unsigned char Chksum; |
||
123 | }; |
||
124 | |||
125 | struct str_FromNaviCtrl_Value |
||
126 | { |
||
127 | signed char Kalman_K; |
||
128 | signed char Kalman_MaxDrift; |
||
129 | signed char Kalman_MaxFusion; |
||
130 | unsigned char SerialDataOkay; |
||
131 | signed char GpsZ; |
||
132 | }; |
||
133 | |||
134 | struct str_SPI_VersionInfo |
||
135 | { |
||
136 | unsigned char Major; |
||
137 | unsigned char Minor; |
||
138 | unsigned char Patch; |
||
139 | unsigned char Compatible; |
||
140 | unsigned char Hardware; |
||
141 | }; |
||
142 | |||
143 | // Satfix types for GPSData.SatFix |
||
144 | #define SATFIX_NONE 0x00 |
||
145 | #define SATFIX_DEADRECKOING 0x01 |
||
146 | #define SATFIX_2D 0x02 |
||
147 | #define SATFIX_3D 0x03 |
||
148 | #define SATFIX_GPS_DEADRECKOING 0x04 |
||
149 | #define SATFIX_TIMEONLY 0x05 |
||
150 | // Flags for interpretation of the GPSData.Flags |
||
151 | #define FLAG_GPSFIXOK 0x01 // (i.e. within DOP & ACC Masks) |
||
152 | #define FLAG_DIFFSOLN 0x02 // (is DGPS used) |
||
153 | #define FLAG_WKNSET 0x04 // (is Week Number valid) |
||
154 | #define FLAG_TOWSET 0x08 // (is Time of Week valid) |
||
155 | #define FLAG_GPS_NAVIGATION_ACTIVE 0x10 // NC to FC -> NC is ready to navigate |
||
156 | |||
157 | struct str_GPSInfo |
||
158 | { |
||
159 | unsigned char Flags; // Status Flags |
||
160 | unsigned char NumOfSats; // number of satelites |
||
161 | unsigned char SatFix; // type of satfix |
||
162 | unsigned char Speed; // m/sek |
||
163 | unsigned int HomeDistance; // distance to Home in dm |
||
164 | int HomeBearing; // bearing to home in deg |
||
165 | }; |
||
166 | |||
167 | |||
168 | #ifdef USE_SPI_COMMUNICATION |
||
169 | extern struct str_GPSInfo GPSInfo; |
||
170 | extern struct str_SPI_VersionInfo NC_Version; |
||
171 | extern struct str_FromNaviCtrl_Value FromNaviCtrl_Value; |
||
172 | extern struct str_ToNaviCtrl ToNaviCtrl; |
||
173 | extern struct str_FromNaviCtrl FromNaviCtrl; |
||
174 | extern unsigned char SPI_CommandCounter,NaviDataOkay; |
||
175 | extern signed char FromNC_Rotate_C, FromNC_Rotate_S; |
||
176 | extern unsigned char NC_ErrorCode; |
||
177 | extern void SPI_MasterInit(void); |
||
178 | extern void SPI_StartTransmitPacket(void); |
||
179 | extern void UpdateSPI_Buffer(void); |
||
180 | extern void SPI_TransmitByte(void); |
||
181 | extern signed int POI_KameraNick; |
||
182 | extern unsigned char NC_GPS_ModeCharacter, NC_To_FC_Flags, NC_To_FC_MaxAltitude; |
||
183 | extern vector16_t MagVec; |
||
184 | extern unsigned char EarthMagneticField; |
||
185 | extern unsigned char EarthMagneticInclination,EarthMagneticInclinationTheoretic; |
||
186 | #else |
||
187 | |||
188 | |||
189 | // -------------------------------- Dummy ----------------------------------------- |
||
190 | #define SPI_MasterInit() ; |
||
191 | #define SPI_StartTransmitPacket() ; |
||
192 | #define UpdateSPI_Buffer() ; |
||
193 | #define SPI_TransmitByte() ; |
||
194 | #endif |
||
195 | |||
196 | |||
197 | #endif |