Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | #ifndef _MAIN_H |
1622 | killagreg | 2 | #define _MAIN_H |
1 | ingob | 3 | |
1923 | holgerb | 4 | //#define DEBUG // use to activate debug output to MK-Tool: use Debug(text); |
1438 | ingob | 5 | //#define ACT_S3D_SUMMENSIGNAL |
2008 | holgerb | 6 | //#define UserParameter8_FAILSAFE |
1928 | holgerb | 7 | //#define RECEIVER_SPEKTRUM_DX7EXP |
8 | //#define RECEIVER_SPEKTRUM_DX8EXP |
||
1438 | ingob | 9 | |
1 | ingob | 10 | // neue Hardware |
1662 | killagreg | 11 | #define ROT_OFF {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB &=~0x01; else PORTB |= 0x01;} |
12 | #define ROT_ON {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB |= 0x01; else PORTB &=~0x01;} |
||
1 | ingob | 13 | #define ROT_FLASH PORTB ^= 0x01 |
2183 | holgerb | 14 | #define GRN_OFF {if((PlatinenVersion < 12) || PlatinenVersion == 22) PORTB &=~0x02; else PORTB |= 0x02;} |
15 | #define GRN_ON {if((PlatinenVersion < 12) || PlatinenVersion == 22) PORTB |= 0x02; else PORTB &=~0x02;} |
||
173 | holgerb | 16 | #define GRN_FLASH PORTB ^= 0x02 |
1 | ingob | 17 | |
1435 | killagreg | 18 | #define SYSCLK F_CPU |
19 | |||
1 | ingob | 20 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
21 | |||
1155 | hbuss | 22 | #define J3High PORTD |= 0x20 |
23 | #define J3Low PORTD &= ~0x20 |
||
24 | #define J4High PORTD |= 0x10 |
||
25 | #define J4Low PORTD &= ~0x10 |
||
26 | #define J5High PORTD |= 0x08 |
||
27 | #define J5Low PORTD &= ~0x08 |
||
28 | |||
1 | ingob | 29 | extern volatile unsigned char SenderOkay; |
1236 | killagreg | 30 | extern unsigned char BattLowVoltageWarning; |
1 | ingob | 31 | extern unsigned char CosinusNickWinkel, CosinusRollWinkel; |
173 | holgerb | 32 | extern unsigned char PlatinenVersion; |
2029 | holgerb | 33 | extern unsigned char FoundMotors,DisableRcOffBeeping; |
1834 | holgerb | 34 | extern unsigned char JetiBeep; |
1268 | hbuss | 35 | void LipoDetection(unsigned char print); |
1512 | holgerb | 36 | extern unsigned int FlugMinuten,FlugMinutenGesamt,FlugSekunden; |
2030 | holgerb | 37 | extern void PrintLine(void); // "=================================" |
1 | ingob | 38 | |
1930 | holgerb | 39 | #include <avr/pgmspace.h> |
40 | |||
41 | #if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__)) |
||
42 | |||
43 | #endif |
||
44 | |||
1 | ingob | 45 | #include <stdlib.h> |
46 | #include <string.h> |
||
47 | #include <avr/io.h> |
||
48 | #include <avr/pgmspace.h> |
||
49 | #include <avr/interrupt.h> |
||
50 | #include <avr/eeprom.h> |
||
51 | #include <avr/boot.h> |
||
52 | #include <avr/wdt.h> |
||
53 | |||
54 | #include "old_macros.h" |
||
55 | |||
56 | #include "printf_P.h" |
||
57 | #include "timer0.h" |
||
58 | #include "uart.h" |
||
59 | #include "analog.h" |
||
60 | #include "twimaster.h" |
||
61 | #include "menu.h" |
||
62 | #include "rc.h" |
||
63 | #include "fc.h" |
||
64 | #include "gps.h" |
||
304 | ingob | 65 | #include "spi.h" |
921 | hbuss | 66 | #include "led.h" |
1424 | ingob | 67 | #include "spektrum.h" |
1486 | killagreg | 68 | #include "capacity.h" |
1622 | killagreg | 69 | #include "eeprom.h" |
1435 | killagreg | 70 | #include "libfc.h" |
1917 | holgerb | 71 | #include "hottmenu.h" |
1636 | ingob | 72 | #include "debug.h" |
2012 | holgerb | 73 | #include "sbus.h" |
1 | ingob | 74 | |
75 | #endif //_MAIN_H |
||
76 | |||
77 | |||
78 | |||
79 | |||
80 | |||
81 |