Rev 2018 | Rev 2049 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1612 | dongfang | 1 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
2 | // + Copyright (c) 04.2007 Holger Buss |
||
1868 | - | 3 | // + Nur für den privaten Gebrauch |
1612 | dongfang | 4 | // + www.MikroKopter.com |
5 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1868 | - | 6 | // + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation), |
1963 | - | 7 | // + dass eine Nutzung (auch auszugsweise) nur f�r den privaten und nicht-kommerziellen Gebrauch zulässig ist. |
1612 | dongfang | 8 | // + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt |
9 | // + bzgl. der Nutzungsbedingungen aufzunehmen. |
||
1868 | - | 10 | // + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen, |
1612 | dongfang | 11 | // + Verkauf von Luftbildaufnahmen, usw. |
12 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1868 | - | 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 |
||
1612 | dongfang | 15 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
16 | // + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts |
||
1868 | - | 17 | // + auf anderen Webseiten oder Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de" |
1612 | dongfang | 18 | // + eindeutig als Ursprung verlinkt und genannt werden |
19 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1868 | - | 20 | // + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion |
1612 | dongfang | 21 | // + Benutzung auf eigene Gefahr |
1868 | - | 22 | // + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden |
1612 | dongfang | 23 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
24 | // + Die Portierung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur |
||
1868 | - | 25 | // + mit unserer Zustimmung zulässig |
1612 | dongfang | 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) |
||
1868 | - | 35 | // + Commercial use (for example: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted |
1612 | dongfang | 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 | // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
||
1623 | - | 52 | |
1612 | dongfang | 53 | #include <avr/boot.h> |
54 | #include <avr/io.h> |
||
55 | #include <avr/interrupt.h> |
||
56 | #include <util/delay.h> |
||
57 | |||
58 | #include "timer0.h" |
||
59 | #include "timer2.h" |
||
60 | #include "uart0.h" |
||
61 | #include "uart1.h" |
||
62 | #include "output.h" |
||
63 | #include "menu.h" |
||
64 | #include "attitude.h" |
||
65 | #include "flight.h" |
||
66 | #include "rc.h" |
||
67 | #include "analog.h" |
||
68 | #include "configuration.h" |
||
69 | #include "printf_P.h" |
||
70 | #include "twimaster.h" |
||
1969 | - | 71 | #include "controlMixer.h" |
1612 | dongfang | 72 | #ifdef USE_NAVICTRL |
73 | #include "spi.h" |
||
74 | #endif |
||
2039 | - | 75 | #ifdef USE_DIRECT_GPS |
1612 | dongfang | 76 | #include "mk3mag.h" |
77 | #endif |
||
78 | #include "eeprom.h" |
||
79 | |||
1821 | - | 80 | int16_t main(void) { |
1864 | - | 81 | uint16_t timer; |
1612 | dongfang | 82 | |
1864 | - | 83 | // disable interrupts global |
84 | cli(); |
||
1612 | dongfang | 85 | |
1864 | - | 86 | // analyze hardware environment |
87 | CPUType = getCPUType(); |
||
1960 | - | 88 | boardRelease = getBoardRelease(); |
1612 | dongfang | 89 | |
1864 | - | 90 | // disable watchdog |
91 | MCUSR &= ~(1 << WDRF); |
||
92 | WDTCSR |= (1 << WDCE) | (1 << WDE); |
||
93 | WDTCSR = 0; |
||
1612 | dongfang | 94 | |
1969 | - | 95 | // This is strange: It should NOT be necessarty to do. But the call of the same, |
96 | // in channelMap_readOrDefault (if eeprom read fails) just sets all to 0,0,0,.... |
||
97 | channelMap_default(); |
||
98 | |||
1864 | - | 99 | // initalize modules |
100 | output_init(); |
||
101 | timer0_init(); |
||
102 | timer2_init(); |
||
2018 | - | 103 | usart0_init(); |
1961 | - | 104 | if (CPUType == ATMEGA644P);// usart1_Init(); |
1864 | - | 105 | RC_Init(); |
106 | analog_init(); |
||
107 | I2C_init(); |
||
1612 | dongfang | 108 | #ifdef USE_NAVICTRL |
1864 | - | 109 | SPI_MasterInit(); |
1612 | dongfang | 110 | #endif |
2039 | - | 111 | #ifdef USE_DIRECT_GPS |
112 | MK3MAG_init(); |
||
113 | usart1_init(); |
||
1612 | dongfang | 114 | #endif |
115 | |||
1969 | - | 116 | // Parameter Set handling |
117 | channelMap_readOrDefault(); |
||
118 | mixerMatrix_readOrDefault(); |
||
119 | paramSet_readOrDefault(); |
||
120 | |||
1864 | - | 121 | // enable interrupts global |
122 | sei(); |
||
1612 | dongfang | 123 | |
1864 | - | 124 | printf("\n\r==================================="); |
125 | printf("\n\rFlightControl"); |
||
126 | printf("\n\rHardware: Custom"); |
||
1964 | - | 127 | printf("\n\r CPU: Atmega644"); |
1864 | - | 128 | if (CPUType == ATMEGA644P) |
129 | printf("p"); |
||
130 | printf("\n\rSoftware: V%d.%d%c",VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH + 'a'); |
||
131 | printf("\n\r==================================="); |
||
1612 | dongfang | 132 | |
1864 | - | 133 | // Wait for a short time (otherwise the RC channel check won't work below) |
134 | // timer = SetDelay(500); |
||
135 | // while(!CheckDelay(timer)); |
||
1612 | dongfang | 136 | |
1864 | - | 137 | // Instead, while away the time by flashing the 2 outputs: |
138 | // First J16, then J17. Makes it easier to see which is which. |
||
1887 | - | 139 | timer = setDelay(200); |
1964 | - | 140 | outputSet(0,1); |
1864 | - | 141 | GRN_OFF; |
142 | RED_ON; |
||
1887 | - | 143 | while (!checkDelay(timer)) |
1864 | - | 144 | ; |
1612 | dongfang | 145 | |
1887 | - | 146 | timer = setDelay(200); |
1964 | - | 147 | outputSet(0,0); |
148 | outputSet(1,1); |
||
1864 | - | 149 | RED_OFF; |
150 | GRN_ON; |
||
1887 | - | 151 | while (!checkDelay(timer)) |
1864 | - | 152 | ; |
1849 | - | 153 | |
1887 | - | 154 | timer = setDelay(200); |
155 | while (!checkDelay(timer)) |
||
1864 | - | 156 | ; |
1964 | - | 157 | outputSet(1,0); |
158 | GRN_OFF; |
||
1612 | dongfang | 159 | |
1864 | - | 160 | twi_diagnostics(); |
1634 | - | 161 | |
1864 | - | 162 | printf("\n\r==================================="); |
1612 | dongfang | 163 | |
164 | #ifdef USE_NAVICTRL |
||
1864 | - | 165 | printf("\n\rSupport for NaviCtrl"); |
1612 | dongfang | 166 | #endif |
167 | |||
2039 | - | 168 | #ifdef USE_DIRECT_GPS |
169 | printf("\n\rDirect (no NaviCtrl) navigation"); |
||
1612 | dongfang | 170 | #endif |
171 | |||
1864 | - | 172 | controlMixer_setNeutral(); |
1612 | dongfang | 173 | |
1864 | - | 174 | // Cal. attitude sensors and reset integrals. |
175 | attitude_setNeutral(); |
||
1612 | dongfang | 176 | |
1864 | - | 177 | // Init flight parameters |
178 | flight_setNeutral(); |
||
1612 | dongfang | 179 | |
1864 | - | 180 | beep(2000); |
1612 | dongfang | 181 | |
1864 | - | 182 | printf("\n\rControl: "); |
1960 | - | 183 | if (staticParams.bitConfig & CFG_HEADING_HOLD) |
2018 | - | 184 | printf("Heading Hold"); |
185 | else printf("RTL Mode"); |
||
1612 | dongfang | 186 | |
1864 | - | 187 | printf("\n\n\r"); |
1612 | dongfang | 188 | |
2018 | - | 189 | LCD_clear(); |
1612 | dongfang | 190 | |
1864 | - | 191 | I2CTimeout = 5000; |
1821 | - | 192 | |
1864 | - | 193 | while (1) { |
1869 | - | 194 | if (runFlightControl) { // control interval |
1864 | - | 195 | runFlightControl = 0; // reset Flag, is enabled every 2 ms by ISR of timer0 |
1872 | - | 196 | if (!analogDataReady) { |
2018 | - | 197 | // Analog data should have been ready but is not!! |
1955 | - | 198 | debugOut.digital[0] |= DEBUG_MAINLOOP_TIMER; |
1872 | - | 199 | } else { |
1955 | - | 200 | debugOut.digital[0] &= ~DEBUG_MAINLOOP_TIMER; |
1821 | - | 201 | |
1872 | - | 202 | J4HIGH; |
2039 | - | 203 | calculateFlightAttitude(); |
204 | controlMixer_periodicTask(); |
||
1869 | - | 205 | flight_control(); |
1872 | - | 206 | J4LOW; |
1821 | - | 207 | |
1872 | - | 208 | if (!--I2CTimeout || missingMotor) { // try to reset the i2c if motor is missing or timeout |
1869 | - | 209 | if (!I2CTimeout) { |
210 | I2C_Reset(); |
||
211 | I2CTimeout = 5; |
||
212 | } |
||
2018 | - | 213 | beepI2CAlarm(); |
1864 | - | 214 | } |
1964 | - | 215 | |
1869 | - | 216 | // Allow Serial Data Transmit if motors must not updated or motors are not running |
217 | if (!runFlightControl || !(MKFlags & MKFLAG_MOTOR_RUN)) { |
||
2018 | - | 218 | usart0_transmitTxData(); |
1869 | - | 219 | } |
1821 | - | 220 | |
2018 | - | 221 | usart0_processRxData(); |
1821 | - | 222 | |
1887 | - | 223 | if (checkDelay(timer)) { |
1869 | - | 224 | if (UBat <= UBAT_AT_5V) { |
225 | // Do nothing. The voltage on the input side of the regulator is <5V; |
||
226 | // we must be running off USB power. Keep it quiet. |
||
1960 | - | 227 | } else if (UBat < staticParams.batteryVoltageWarning) { |
1869 | - | 228 | beepBatteryAlarm(); |
229 | } |
||
1821 | - | 230 | |
1612 | dongfang | 231 | #ifdef USE_NAVICTRL |
1869 | - | 232 | SPI_StartTransmitPacket(); |
233 | SendSPI = 4; |
||
1612 | dongfang | 234 | #endif |
1887 | - | 235 | timer = setDelay(20); // every 20 ms |
1869 | - | 236 | } |
237 | output_update(); |
||
1864 | - | 238 | } |
1821 | - | 239 | |
1612 | dongfang | 240 | #ifdef USE_NAVICTRL |
1869 | - | 241 | if(!SendSPI) { |
242 | // SendSPI is decremented in timer0.c with a rate of 9.765 kHz. |
||
243 | // within the SPI_TransmitByte() routine the value is set to 4. |
||
244 | // I.e. the SPI_TransmitByte() is called at a rate of 9.765 kHz/4= 2441.25 Hz, |
||
245 | // and therefore the time of transmission of a complete spi-packet (32 bytes) is 32*4/9.765 kHz = 13.1 ms. |
||
246 | SPI_TransmitByte(); |
||
247 | } |
||
248 | #endif |
||
1975 | - | 249 | |
250 | calculateServoValues(); |
||
1980 | - | 251 | |
2018 | - | 252 | if (runFlightControl) { // Time for the next iteration was up before the current finished. Signal error. |
1980 | - | 253 | debugOut.digital[1] |= DEBUG_MAINLOOP_TIMER; |
254 | } else { |
||
255 | debugOut.digital[1] &= ~DEBUG_MAINLOOP_TIMER; |
||
256 | } |
||
1864 | - | 257 | } |
258 | } |
||
259 | return (1); |
||
1612 | dongfang | 260 | } |