Rev 1738 | Details | Compare with Previous | 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 | |
1636 | ingob | 4 | //#define DEBUG // use to activate debug output to MK-Tool: use Debug(text); |
1438 | ingob | 5 | //#define ACT_S3D_SUMMENSIGNAL |
1682 | holgerb | 6 | //#define SWITCH_LEARNS_CAREFREE |
1702 | holgerb | 7 | //#define RECEIVER_SPEKTRUM_EXP |
1438 | ingob | 8 | |
1 | ingob | 9 | // neue Hardware |
1662 | killagreg | 10 | #define ROT_OFF {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB &=~0x01; else PORTB |= 0x01;} |
11 | #define ROT_ON {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB |= 0x01; else PORTB &=~0x01;} |
||
1 | ingob | 12 | #define ROT_FLASH PORTB ^= 0x01 |
1058 | killagreg | 13 | #define GRN_OFF {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;} |
14 | #define GRN_ON {if((PlatinenVersion < 12)) PORTB |= 0x02; else PORTB &=~0x02;} |
||
173 | holgerb | 15 | #define GRN_FLASH PORTB ^= 0x02 |
1 | ingob | 16 | |
1435 | killagreg | 17 | #define SYSCLK F_CPU |
18 | |||
1 | ingob | 19 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
20 | |||
1155 | hbuss | 21 | #define J3High PORTD |= 0x20 |
22 | #define J3Low PORTD &= ~0x20 |
||
23 | #define J4High PORTD |= 0x10 |
||
24 | #define J4Low PORTD &= ~0x10 |
||
25 | #define J5High PORTD |= 0x08 |
||
26 | #define J5Low PORTD &= ~0x08 |
||
27 | |||
1 | ingob | 28 | extern volatile unsigned char SenderOkay; |
1236 | killagreg | 29 | extern unsigned char BattLowVoltageWarning; |
1 | ingob | 30 | extern unsigned char CosinusNickWinkel, CosinusRollWinkel; |
173 | holgerb | 31 | extern unsigned char PlatinenVersion; |
723 | hbuss | 32 | extern unsigned char SendVersionToNavi; |
1702 | holgerb | 33 | extern unsigned char FoundMotors; |
1622 | killagreg | 34 | |
1268 | hbuss | 35 | void LipoDetection(unsigned char print); |
1512 | holgerb | 36 | extern unsigned int FlugMinuten,FlugMinutenGesamt,FlugSekunden; |
1 | ingob | 37 | |
38 | #include <stdlib.h> |
||
39 | #include <string.h> |
||
40 | #include <avr/io.h> |
||
41 | #include <avr/pgmspace.h> |
||
42 | #include <avr/interrupt.h> |
||
43 | #include <avr/eeprom.h> |
||
44 | #include <avr/boot.h> |
||
45 | #include <avr/wdt.h> |
||
46 | |||
1438 | ingob | 47 | |
1 | ingob | 48 | #include "old_macros.h" |
49 | |||
50 | #include "printf_P.h" |
||
51 | #include "timer0.h" |
||
52 | #include "uart.h" |
||
53 | #include "analog.h" |
||
54 | #include "twimaster.h" |
||
55 | #include "menu.h" |
||
56 | #include "rc.h" |
||
57 | #include "fc.h" |
||
58 | #include "gps.h" |
||
304 | ingob | 59 | #include "spi.h" |
921 | hbuss | 60 | #include "led.h" |
1424 | ingob | 61 | #include "spektrum.h" |
1486 | killagreg | 62 | #include "capacity.h" |
1622 | killagreg | 63 | #include "eeprom.h" |
1435 | killagreg | 64 | #include "libfc.h" |
1636 | ingob | 65 | #include "debug.h" |
1 | ingob | 66 | |
1419 | ingob | 67 | |
1438 | ingob | 68 | |
1 | ingob | 69 | #endif //_MAIN_H |
70 | |||
71 | |||
72 | |||
73 | |||
74 | |||
75 |