Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
304 | ingob | 1 | // ######################## SPI - FlightCtrl ################### |
2 | #ifndef _SPI_H |
||
3 | #define _SPI_H |
||
4 | |||
708 | ingob | 5 | #include <util/delay.h> |
597 | ingob | 6 | |
708 | ingob | 7 | #define USE_SPI_COMMUNICATION |
8 | |||
619 | ingob | 9 | #define SPI_PROTOCOL_COMP 1 |
304 | ingob | 10 | |
11 | //----------------------------------------- |
||
12 | #define DDR_SPI DDRB |
||
13 | #define DD_SS PB4 |
||
14 | #define DD_SCK PB7 |
||
15 | #define DD_MOSI PB5 |
||
16 | #define DD_MISO PB6 |
||
17 | |||
596 | ingob | 18 | // for compatibility reasons gcc3.x <-> gcc4.x |
19 | #ifndef SPCR |
||
20 | #define SPCR SPCR0 |
||
21 | #endif |
||
22 | #ifndef SPE |
||
23 | #define SPE SPE0 |
||
24 | #endif |
||
25 | #ifndef MSTR |
||
26 | #define MSTR MSTR0 |
||
27 | #endif |
||
28 | #ifndef SPR1 |
||
29 | #define SPR1 SPR01 |
||
30 | #endif |
||
606 | ingob | 31 | #ifndef SPR0 |
32 | #define SPR0 SPR00 |
||
33 | #endif |
||
596 | ingob | 34 | #ifndef SPIE |
35 | #define SPIE SPIE0 |
||
36 | #endif |
||
37 | #ifndef SPDR |
||
38 | #define SPDR SPDR0 |
||
39 | #endif |
||
40 | #ifndef SPIF |
||
41 | #define SPIF SPIF0 |
||
42 | #endif |
||
43 | #ifndef SPSR |
||
44 | #define SPSR SPSR0 |
||
45 | #endif |
||
46 | // ------------------------- |
||
304 | ingob | 47 | |
48 | #define SLAVE_SELECT_DDR_PORT DDRC |
||
49 | #define SLAVE_SELECT_PORT PORTC |
||
50 | #define SPI_SLAVE_SELECT PC5 |
||
51 | |||
708 | ingob | 52 | struct str_ToNaviCtrl_Value |
304 | ingob | 53 | { |
606 | ingob | 54 | unsigned char Sync1, Sync2; |
708 | ingob | 55 | unsigned char Command; |
805 | hbuss | 56 | signed int IntegralNick; |
708 | ingob | 57 | signed int IntegralRoll; |
805 | hbuss | 58 | signed int AccNick; |
59 | signed int AccRoll; |
||
709 | ingob | 60 | char StickNick,StickRoll, |
61 | StickGier, StickGas; |
||
62 | signed int GyroCompass; |
||
63 | char User1, User2, User3, User4, User5, User6, User7, User8; |
||
64 | unsigned char Chksum; |
||
304 | ingob | 65 | }; |
66 | |||
708 | ingob | 67 | struct str_ToNaviCtrl_Version |
68 | { |
||
69 | unsigned char Sync1, Sync2; |
||
70 | unsigned char Command; |
||
71 | unsigned char HVersion; |
||
72 | unsigned char NVersion; |
||
73 | unsigned char Comp; |
||
723 | hbuss | 74 | unsigned char ActualSettingNo; |
75 | unsigned char MinimumSatNo; |
||
76 | unsigned char d1; |
||
708 | ingob | 77 | signed int d2; |
78 | signed int d3; |
||
79 | signed int d4; |
||
80 | signed int d5; |
||
81 | signed int d6; |
||
82 | signed int d7; |
||
83 | unsigned char Chksum; |
||
84 | }; |
||
85 | |||
86 | struct str_FromNaviCtrl_Value |
||
304 | ingob | 87 | { |
708 | ingob | 88 | unsigned char Command; |
89 | signed int GPS_Nick; |
||
90 | signed int GPS_Roll; |
||
91 | signed int GPS_Gier; |
||
92 | signed int GPS_Height; |
||
93 | signed int CompassValue; |
||
94 | signed int Status; |
||
720 | ingob | 95 | unsigned char BeepTime; |
744 | hbuss | 96 | unsigned char OsdBar; |
97 | signed int Distance; |
||
708 | ingob | 98 | signed int d2; |
805 | hbuss | 99 | signed int d3; |
100 | signed int d4; |
||
708 | ingob | 101 | unsigned char Chksum; |
304 | ingob | 102 | }; |
103 | |||
708 | ingob | 104 | struct str_FromNaviCtrl_Version |
105 | { |
||
106 | unsigned char Command; |
||
107 | unsigned char HVersion; |
||
108 | unsigned char NVersion; |
||
109 | unsigned char Comp; |
||
110 | unsigned char d0; |
||
111 | signed int d1; |
||
112 | signed int d2; |
||
113 | signed int d3; |
||
114 | signed int d4; |
||
115 | signed int d5; |
||
116 | signed int d6; |
||
117 | signed int d7; |
||
118 | unsigned char Chksum; |
||
119 | }; |
||
120 | |||
597 | ingob | 121 | #ifdef USE_SPI_COMMUNICATION |
708 | ingob | 122 | extern struct str_ToNaviCtrl_Version ToNaviCtrl_Version; |
123 | extern struct str_FromNaviCtrl_Version FromNaviCtrl_Version; |
||
304 | ingob | 124 | |
708 | ingob | 125 | extern struct str_ToNaviCtrl_Value ToNaviCtrl_Value; |
126 | extern struct str_FromNaviCtrl_Value FromNaviCtrl_Value; |
||
304 | ingob | 127 | |
708 | ingob | 128 | #define SPI_CMD_VERSION 0x02 |
129 | #define SPI_CMD_VALUE 0x03 |
||
130 | |||
304 | ingob | 131 | extern void SPI_MasterInit(void); |
708 | ingob | 132 | extern void SPI_StartTransmitPacket(unsigned char command); |
304 | ingob | 133 | extern void UpdateSPI_Buffer(void); |
134 | extern void SPI_TransmitByte(void); |
||
597 | ingob | 135 | #else |
304 | ingob | 136 | |
137 | |||
597 | ingob | 138 | // -------------------------------- Dummy ----------------------------------------- |
139 | #define SPI_MasterInit() ; |
||
140 | #define SPI_StartTransmitPacket() ; |
||
141 | #define UpdateSPI_Buffer() ; |
||
142 | #define SPI_TransmitByte() ; |
||
143 | #endif |
||
304 | ingob | 144 | |
597 | ingob | 145 | |
146 | #endif |