Subversion Repositories FlightCtrl

Rev

Rev 1994 | Rev 2000 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1995 - 1
#ifndef _MAIN_H
2
#define _MAIN_H
3
 
4
//#define DEBUG                                                 // use to activate debug output to MK-Tool: use Debug(text);
5
//#define ACT_S3D_SUMMENSIGNAL
6
//#define RECEIVER_SPEKTRUM_DX7EXP
7
//#define RECEIVER_SPEKTRUM_DX8EXP
8
 
9
 
10
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))        ///MartinW
11
        #define WITH_MKTOOL_Display
12
        #define WITH_JETI_SIMULATION
13
        #define WITH_ExternControl
14
        #define WITH_FULL_ANALOG_TEXT
15
        #define WITHSPECTRUM 
16
#else
17
#endif
18
 
19
//#define WITH_MKTOOL_Display                   /// MartinW;  with MKTool Display 70604-63130
20
//#define WITHSPECTRUM                                  /// MartinW;  memsave
21
//#define WITH_FULL_ANALOG_TEXT                 /// MartinW;  memsave
22
//#define WITH_ExternControl                    /// MartinW;  memsave
23
//#define WITH_ORIGINAL_MOTORSMOOTHING  /// MartinW;  memsave 63312-63164
24
//#define WITH_JETI_SIMULATION                  /// MartinW;  memsave 63312-63016
25
#define WITH_JETI_BEEP                                  /// MartinW;  63072-63038; 63216-63050
26
//#define WITH_PANOTRIGGER                              /// MartinW;  64336-64112
27
//#define WITH_HOTTMENU                                 /// Metro; 
28
 
29
 
30
 
31
 
32
 
33
 
34
 
35
// neue Hardware
36
#define ROT_OFF   {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB &=~0x01; else  PORTB |= 0x01;}
37
#define ROT_ON    {if((PlatinenVersion == 10)||(PlatinenVersion >= 20)) PORTB |= 0x01; else  PORTB &=~0x01;}
38
#define ROT_FLASH PORTB ^= 0x01
39
#define GRN_OFF   {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;}
40
#define GRN_ON    {if((PlatinenVersion < 12)) PORTB |= 0x02; else PORTB &=~0x02;}
41
#define GRN_FLASH PORTB ^= 0x02
42
 
43
#define SYSCLK F_CPU
44
 
45
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
46
 
47
#define J3High    PORTD |= 0x20
48
#define J3Low     PORTD &= ~0x20
49
#define J4High    PORTD |= 0x10
50
#define J4Low     PORTD &= ~0x10
51
#define J5High    PORTD |= 0x08
52
#define J5Low     PORTD &= ~0x08
53
 
54
extern volatile unsigned char SenderOkay;
55
extern unsigned char BattLowVoltageWarning;
56
extern unsigned char CosinusNickWinkel, CosinusRollWinkel;
57
extern unsigned char PlatinenVersion;
58
extern unsigned char SendVersionToNavi;
59
extern unsigned char FoundMotors;
60
extern unsigned char JetiBeep;
61
void LipoDetection(unsigned char print);
62
extern unsigned int FlugMinuten,FlugMinutenGesamt,FlugSekunden;
63
#include <avr/pgmspace.h>
64
 
65
#if (defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__))
66
 
67
#endif
68
 
69
#include <stdlib.h>
70
#include <string.h>
71
#include <avr/io.h>
72
#include <avr/pgmspace.h>
73
#include <avr/interrupt.h>
74
#include <avr/eeprom.h>
75
#include <avr/boot.h>
76
#include <avr/wdt.h>
77
 
78
#include "old_macros.h"
79
 
80
#include "printf_P.h"
81
#include "timer0.h"
82
#include "uart.h"
83
#include "analog.h"
84
#include "twimaster.h"
85
#include "menu.h"
86
#include "rc.h"
87
#include "fc.h"
88
#include "gps.h"
89
#include "spi.h"
90
#include "led.h"
91
#include "spektrum.h"
92
#include "capacity.h"
93
#include "eeprom.h"
94
#include "libfc.h"
95
#include "hottmenu.h"
96
#include "debug.h"
97
 
98
 
99
#endif //_MAIN_H
100
 
101
 
102
 
103
 
104
 
105