Rev 1126 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1112 | thjac | 1 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 | // + Copyright (c) 04.2007 Holger Buss |
||
3 | // + Nur für den privaten Gebrauch |
||
4 | // + www.MikroKopter.com |
||
5 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
6 | // + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation), |
||
7 | // + dass eine Nutzung (auch auszugsweise) nur für den privaten und nicht-kommerziellen Gebrauch zulässig ist. |
||
8 | // + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt |
||
9 | // + bzgl. der Nutzungsbedingungen aufzunehmen. |
||
10 | // + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen, |
||
11 | // + Verkauf von Luftbildaufnahmen, usw. |
||
12 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
13 | // + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht, |
||
14 | // + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen |
||
15 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
16 | // + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts |
||
17 | // + auf anderen Webseiten oder Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de" |
||
18 | // + eindeutig als Ursprung verlinkt und genannt werden |
||
19 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
20 | // + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion |
||
21 | // + Benutzung auf eigene Gefahr |
||
22 | // + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden |
||
23 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
24 | // + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur |
||
25 | // + mit unserer Zustimmung zulässig |
||
26 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
27 | // + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen |
||
28 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
29 | // + Redistributions of source code (with or without modifications) must retain the above copyright notice, |
||
30 | // + this list of conditions and the following disclaimer. |
||
31 | // + * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived |
||
32 | // + from this software without specific prior written permission. |
||
33 | // + * The use of this project (hardware, software, binary files, sources and documentation) is only permittet |
||
34 | // + for non-commercial use (directly or indirectly) |
||
35 | // + Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted |
||
36 | // + with our written permission |
||
37 | // + * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be |
||
38 | // + clearly linked as origin |
||
39 | // + * porting to systems other than hardware from www.mikrokopter.de is not allowed |
||
40 | // + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||
41 | // + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||
42 | // + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||
43 | // + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
||
44 | // + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
||
45 | // + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
||
46 | // + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
||
47 | // + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
||
48 | // + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||
49 | // + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||
50 | // + POSSIBILITY OF SUCH DAMAGE. |
||
51 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
52 | #include "main.h" |
||
53 | |||
1133 | thjac | 54 | unsigned char EEPromArray[E2END+1] EEMEM; |
1112 | thjac | 55 | unsigned char PlatinenVersion = 10; |
56 | unsigned char SendVersionToNavi = 1; |
||
57 | // -- Parametersatz aus EEPROM lesen --- |
||
58 | // number [1..5] |
||
1133 | thjac | 59 | void ReadParameterSet(unsigned char number, unsigned char *buffer, unsigned char length) |
60 | { |
||
61 | if((number > 5)||(number < 1)) number = 3; |
||
62 | eeprom_read_block(buffer, &EEPromArray[EEPROM_ADR_PARAM_BEGIN + length * (number - 1)], length); |
||
63 | LED_Init(); |
||
1112 | thjac | 64 | } |
65 | |||
66 | // -- Parametersatz ins EEPROM schreiben --- |
||
67 | // number [1..5] |
||
1133 | thjac | 68 | void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length) |
69 | { |
||
70 | if(number > 5) number = 5; |
||
71 | if(number < 1) return; |
||
72 | eeprom_write_block(buffer, &EEPromArray[EEPROM_ADR_PARAM_BEGIN + length * (number - 1)], length); |
||
73 | SetActiveParamSetNumber(number); |
||
74 | LED_Init(); |
||
1112 | thjac | 75 | } |
76 | |||
1133 | thjac | 77 | unsigned char GetActiveParamSetNumber(void) |
78 | { |
||
79 | unsigned char set; |
||
80 | set = eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACTIVE_SET]); |
||
81 | if((set > 5) || (set < 1)) |
||
82 | { |
||
83 | set = 3; |
||
84 | SetActiveParamSetNumber(set); // diesen Parametersatz als aktuell merken |
||
85 | } |
||
86 | return(set); |
||
1112 | thjac | 87 | } |
88 | |||
1133 | thjac | 89 | |
90 | void SetActiveParamSetNumber(unsigned char number) |
||
91 | { |
||
92 | if(number > 5) number = 5; |
||
93 | if(number < 1) return; |
||
94 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_ACTIVE_SET], number); // diesen Parametersatz als aktuell merken |
||
1112 | thjac | 95 | } |
96 | |||
97 | |||
1133 | thjac | 98 | void CalMk3Mag(void) |
99 | { |
||
100 | static unsigned char stick = 1; |
||
101 | |||
102 | if(PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] > -20) stick = 0; |
||
103 | if((PPM_in[EE_Parameter.Kanalbelegung[K_NICK]] < -70) && !stick) |
||
104 | { |
||
105 | stick = 1; |
||
106 | WinkelOut.CalcState++; |
||
107 | if(WinkelOut.CalcState > 4) |
||
108 | { |
||
109 | // WinkelOut.CalcState = 0; // in Uart.c |
||
110 | beeptime = 1000; |
||
1112 | thjac | 111 | } |
1133 | thjac | 112 | else Piep(WinkelOut.CalcState); |
113 | } |
||
114 | DebugOut.Analog[19] = WinkelOut.CalcState; |
||
1112 | thjac | 115 | } |
116 | |||
117 | //############################################################################ |
||
118 | //Hauptprogramm |
||
1133 | thjac | 119 | int main (void) |
1112 | thjac | 120 | //############################################################################ |
121 | { |
||
1133 | thjac | 122 | unsigned int timer; |
1112 | thjac | 123 | |
1133 | thjac | 124 | //unsigned int timer2 = 0; |
125 | DDRB = 0x00; |
||
1112 | thjac | 126 | PORTB = 0x00; |
1133 | thjac | 127 | for(timer = 0; timer < 1000; timer++); // verzögern |
128 | if(PINB & 0x01) |
||
129 | { |
||
130 | if(PINB & 0x02) PlatinenVersion = 13; |
||
131 | else PlatinenVersion = 11; |
||
132 | } |
||
133 | else |
||
134 | { |
||
135 | if(PINB & 0x02) PlatinenVersion = 20; |
||
136 | else PlatinenVersion = 10; |
||
137 | } |
||
1112 | thjac | 138 | |
1133 | thjac | 139 | DDRC = 0x81; // SCL |
140 | DDRC |=0x40; // HEF4017 Reset |
||
1112 | thjac | 141 | PORTC = 0xff; // Pullup SDA |
1133 | thjac | 142 | DDRB = 0x1B; // LEDs und Druckoffset |
1112 | thjac | 143 | PORTB = 0x01; // LED_Rot |
1133 | thjac | 144 | DDRD = 0x3E; // Speaker & TXD & J3 J4 J5 |
145 | DDRD |=0x80; // J7 -> Servo signal |
||
146 | PORTD = 0x77; // LED |
||
1112 | thjac | 147 | |
148 | |||
1133 | thjac | 149 | MCUSR &=~(1<<WDRF); |
150 | WDTCSR |= (1<<WDCE)|(1<<WDE); |
||
1112 | thjac | 151 | WDTCSR = 0; |
152 | |||
153 | beeptime = 2000; |
||
154 | |||
1133 | thjac | 155 | StickGier = 0; PPM_in[K_GAS] = 0;StickRoll = 0; StickNick = 0; |
1112 | thjac | 156 | |
157 | ROT_OFF; |
||
158 | |||
159 | Timer_Init(); |
||
1133 | thjac | 160 | UART_Init(); |
1112 | thjac | 161 | rc_sum_init(); |
1133 | thjac | 162 | ADC_Init(); |
163 | i2c_init(); |
||
164 | SPI_MasterInit(); |
||
1112 | thjac | 165 | |
1133 | thjac | 166 | sei(); |
1112 | thjac | 167 | |
1133 | thjac | 168 | printf("\n\rFlightControl\n\rHardware:%d.%d\n\rSoftware:V%d.%d%c ",PlatinenVersion/10,PlatinenVersion%10, VERSION_MAJOR, VERSION_MINOR,VERSION_PATCH + 'a'); |
169 | printf("\n\r=============================="); |
||
1112 | thjac | 170 | |
1133 | thjac | 171 | GRN_ON; |
1112 | thjac | 172 | |
173 | |||
1133 | thjac | 174 | ReadParameterSet(3, (unsigned char *) &EE_Parameter.Kanalbelegung[0], 9); // read only the first bytes |
1112 | thjac | 175 | // valid Stick-Settings? |
1133 | thjac | 176 | if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_VALID]) == 255 || eeprom_read_byte(&EEPromArray[EEPROM_ADR_VALID]) < EE_DATENREVISION || |
177 | EE_Parameter.Kanalbelegung[0] > 9 || EE_Parameter.Kanalbelegung[1] > 9 || EE_Parameter.Kanalbelegung[2] > 9 || EE_Parameter.Kanalbelegung[3] > 9) |
||
178 | { |
||
179 | printf("\n\rInit. EEPROM: Generating Default-Parameter and Stick-Settings..."); |
||
1112 | thjac | 180 | DefaultStickMapping(); |
1133 | thjac | 181 | } |
182 | else if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_VALID]) != EE_DATENREVISION) printf("\n\rInit. EEPROM: Generating Default-Parameter using old Stick Settings"); |
||
1112 | thjac | 183 | |
1133 | thjac | 184 | if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_VALID]) != EE_DATENREVISION) |
185 | { |
||
186 | DefaultKonstanten1(); |
||
187 | for (unsigned char i=1;i<6;i++) |
||
188 | { |
||
189 | if(i==2) DefaultKonstanten2(); // Kamera |
||
190 | if(i==3) DefaultKonstanten3(); // Beginner |
||
191 | if(i>3) DefaultKonstanten2(); // Kamera |
||
192 | WriteParameterSet(i, (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE); |
||
193 | } |
||
194 | SetActiveParamSetNumber(3); // default-Setting |
||
195 | eeprom_write_byte(&EEPromArray[EEPROM_ADR_VALID], EE_DATENREVISION); |
||
196 | } |
||
1112 | thjac | 197 | |
1133 | thjac | 198 | if(eeprom_read_byte(&EEPromArray[EEPROM_ADR_ACC_NICK]) > 4) |
199 | { |
||
200 | printf("\n\rACC nicht abgeglichen!"); |
||
201 | } |
||
1112 | thjac | 202 | |
1133 | thjac | 203 | ReadParameterSet(GetActiveParamSetNumber(), (unsigned char *) &EE_Parameter.Kanalbelegung[0], STRUCT_PARAM_LAENGE); |
1112 | thjac | 204 | printf("\n\rBenutze Parametersatz %d", GetActiveParamSetNumber()); |
205 | |||
206 | |||
1133 | thjac | 207 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
208 | { |
||
209 | printf("\n\rAbgleich Luftdrucksensor.."); |
||
210 | timer = SetDelay(1000); |
||
211 | SucheLuftruckOffset(); |
||
212 | while (!CheckDelay(timer)); |
||
213 | printf("OK\n\r"); |
||
214 | } |
||
1112 | thjac | 215 | |
1133 | thjac | 216 | SetNeutral(); |
1112 | thjac | 217 | |
1133 | thjac | 218 | ROT_OFF; |
1112 | thjac | 219 | |
220 | beeptime = 2000; |
||
221 | ExternControl.Digital[0] = 0x55; |
||
222 | |||
223 | |||
1133 | thjac | 224 | printf("\n\rSteuerung: "); |
225 | if (EE_Parameter.GlobalConfig & CFG_HEADING_HOLD) printf("HeadingHold"); |
||
226 | else printf("Neutral"); |
||
1112 | thjac | 227 | |
1133 | thjac | 228 | printf("\n\n\r"); |
1112 | thjac | 229 | |
230 | LcdClear(); |
||
231 | I2CTimeout = 5000; |
||
232 | WinkelOut.Orientation = 1; |
||
1133 | thjac | 233 | while (1) |
234 | { |
||
1112 | thjac | 235 | |
1133 | thjac | 236 | if(UpdateMotor) // ReglerIntervall |
237 | { |
||
238 | UpdateMotor=0; |
||
239 | //PORTD |= 0x08; |
||
240 | if(WinkelOut.CalcState) CalMk3Mag(); |
||
1112 | thjac | 241 | else MotorRegler(); |
1133 | thjac | 242 | //PORTD &= ~0x08; |
1112 | thjac | 243 | SendMotorData(); |
244 | ROT_OFF; |
||
1133 | thjac | 245 | if(PcZugriff) PcZugriff--; |
246 | else |
||
247 | { |
||
248 | ExternControl.Config = 0; |
||
249 | ExternStickNick = 0; |
||
250 | ExternStickRoll = 0; |
||
251 | ExternStickGier = 0; |
||
252 | } |
||
253 | if(SenderOkay) SenderOkay--; |
||
254 | if(!I2CTimeout) |
||
255 | { |
||
256 | I2CTimeout = 5; |
||
257 | i2c_reset(); |
||
258 | if((BeepMuster == 0xffff) && MotorenEin) |
||
259 | { |
||
1112 | thjac | 260 | beeptime = 10000; |
261 | BeepMuster = 0x0080; |
||
1133 | thjac | 262 | } |
1112 | thjac | 263 | } |
1133 | thjac | 264 | else |
265 | { |
||
266 | I2CTimeout--; |
||
267 | ROT_OFF; |
||
1112 | thjac | 268 | } |
1133 | thjac | 269 | if(SIO_DEBUG && (!UpdateMotor || !MotorenEin)) |
270 | { |
||
271 | DatenUebertragung(); |
||
272 | BearbeiteRxDaten(); |
||
273 | } |
||
274 | else BearbeiteRxDaten(); |
||
275 | if(CheckDelay(timer)) |
||
276 | { |
||
277 | if(UBat < EE_Parameter.UnterspannungsWarnung) |
||
278 | { |
||
279 | if(BeepMuster == 0xffff) |
||
280 | { |
||
281 | beeptime = 6000; |
||
282 | BeepMuster = 0x0300; |
||
283 | } |
||
284 | } |
||
285 | /* if(SendVersionToNavi) |
||
286 | { |
||
287 | SPI_StartTransmitPacket(SPI_CMD_VERSION);//# |
||
288 | SendVersionToNavi = 0; |
||
289 | } |
||
290 | else SPI_StartTransmitPacket(SPI_CMD_VALUE);//# |
||
291 | */ |
||
292 | SPI_StartTransmitPacket();//# |
||
1112 | thjac | 293 | |
1133 | thjac | 294 | SendSPI = 4; |
295 | timer = SetDelay(20); |
||
1112 | thjac | 296 | } |
1133 | thjac | 297 | //if(UpdateMotor) DebugOut.Analog[26]++; |
298 | LED_Update(); |
||
299 | } |
||
300 | if(!SendSPI) { SPI_TransmitByte(); } |
||
1112 | thjac | 301 | } |
1133 | thjac | 302 | return (1); |
1112 | thjac | 303 | } |
304 |