Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1189 kmpec 1
#ifndef _MAIN_H
2
 #define _MAIN_H
3
 
4
#define QUADRO
5
//#define OCTO  // 2 Arms in Front
6
//#define OCTO2 // 1 Arm in front
7
//#define OCTO3 // 1 Arm with two Motors in front or Coax
8
 
9
//+++++++++++
10
//  Quadro:
11
//    1 
12
//  4   3
13
//    2 
14
//+++++++++++
15
// Reverse Props on 1 2 
16
 
17
//+++++++++++
18
//   Octo:
19
//    1 2
20
//  8     3
21
//  7     4
22
//    6 5 
23
//+++++++++++
24
 
25
//+++++++++++
26
//   Octo2:
27
//      1 
28
//    8   2
29
//  7       3
30
//    6   4    
31
//      5
32
//+++++++++++
33
 
34
//+++++++++++
35
//   Octo3:
36
//      1 
37
//      2
38
// 8 7     3 4
39
//      5
40
//      6
41
//+++++++++++
42
// Reverse Props on octo: 1 3 5 7
43
 
44
 
45
//Hier die Quarz Frequenz einstellen
46
#if defined (__AVR_ATmega32__)
47
#define SYSCLK  20000000L       //Quarz Frequenz in Hz
48
#endif
49
 
50
#if defined (__AVR_ATmega644__)
51
#define SYSCLK  20000000L       //Quarz Frequenz in Hz
52
#endif
53
 
54
#if defined (__AVR_ATmega644P__)
55
#define SYSCLK  20000000L       //Quarz Frequenz in Hz
56
#endif
57
 
58
// neue Hardware
59
#define ROT_OFF   {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB &=~0x01; else  PORTB |= 0x01;}
60
#define ROT_ON    {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB |= 0x01; else  PORTB &=~0x01;}
61
#define ROT_FLASH PORTB ^= 0x01
62
#define GRN_OFF   {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;}
63
#define GRN_ON    {if((PlatinenVersion < 12)) PORTB |= 0x02; else PORTB &=~0x02;}
64
#define GRN_FLASH PORTB ^= 0x02
65
 
66
#define F_CPU SYSCLK
67
//#ifndef F_CPU
68
//#error ################## F_CPU nicht definiert oder ungültig #############
69
//#endif
70
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
71
#define EE_DATENREVISION 74 // wird angepasst, wenn sich die EEPROM-Daten geändert haben
72
 
73
#define EEPROM_ADR_VALID            1
74
#define EEPROM_ADR_ACTIVE_SET       2
75
#define EEPROM_ADR_LAST_OFFSET      3
76
 
77
#define EEPROM_ADR_ACC_NICK         4
78
#define EEPROM_ADR_ACC_ROLL         6
79
#define EEPROM_ADR_ACC_Z            8
80
 
81
#define EEPROM_ADR_CHANNELS          80
82
 
83
#define EEPROM_ADR_PARAM_LENGTH      98
84
#define EEPROM_ADR_PARAM_BEGIN      100
85
 
86
#define CFG_HOEHENREGELUNG       0x01
87
#define CFG_HOEHEN_SCHALTER      0x02
88
#define CFG_HEADING_HOLD         0x04
89
#define CFG_KOMPASS_AKTIV        0x08
90
#define CFG_KOMPASS_FIX          0x10
91
#define CFG_GPS_AKTIV            0x20
92
#define CFG_ACHSENKOPPLUNG_AKTIV 0x40
93
#define CFG_DREHRATEN_BEGRENZER  0x80
94
 
95
#define CFG_LOOP_OBEN       0x01
96
#define CFG_LOOP_UNTEN      0x02
97
#define CFG_LOOP_LINKS      0x04
98
#define CFG_LOOP_RECHTS     0x08
99
#define CFG_HIGHT_3SWITCH   0x10
100
 
101
#define J3High    PORTD |= 0x20
102
#define J3Low     PORTD &= ~0x20
103
#define J4High    PORTD |= 0x10
104
#define J4Low     PORTD &= ~0x10
105
#define J5High    PORTD |= 0x08
106
#define J5Low     PORTD &= ~0x08
107
 
108
 
109
//#define  SYSCLK
110
//extern unsigned long SYSCLK;
111
extern volatile unsigned char SenderOkay;
112
extern unsigned char CosinusNickWinkel, CosinusRollWinkel;
113
extern unsigned char PlatinenVersion;
114
extern unsigned char SendVersionToNavi;
115
void ReadParameterSet (unsigned char number, unsigned char *buffer, unsigned char length);
116
void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length);
117
extern unsigned char GetActiveParamSetNumber(void);
118
void SetActiveParamSetNumber(unsigned char number);
119
extern unsigned char EEPromArray[];
120
 
121
#include <stdlib.h>
122
#include <string.h>
123
#include <avr/io.h>
124
#include <avr/pgmspace.h>
125
#include <avr/interrupt.h>
126
#include <avr/eeprom.h>
127
#include <avr/boot.h>
128
#include <avr/wdt.h>
129
 
130
#include "old_macros.h"
131
 
132
#include "_Settings.h"
133
#include "printf_P.h"
134
#include "timer0.h"
135
#include "uart.h"
136
#include "analog.h"
137
#include "twimaster.h"
138
#include "menu.h"
139
#include "rc.h"
140
#include "fc.h"
141
#include "gps.h"
142
#include "spi.h"
143
#include "led.h"
144
 
145
#ifndef EEMEM
146
#define EEMEM __attribute__ ((section (".eeprom")))
147
#endif
148
 
149
#define DEBUG_DISPLAY_INTERVALL  123 // in ms
150
 
151
 
152
#define DELAY_US(x)     ((unsigned int)( (x) * 1e-6 * F_CPU ))
153
 
154
#endif //_MAIN_H
155
 
156
 
157
 
158
 
159
 
160