Subversion Repositories FlightCtrl

Rev

Rev 1139 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1134 thjac 1
#ifndef _MAIN_H
2
 #define _MAIN_H
3
 
4
//Hier die Quarz Frequenz einstellen
5
#if defined (__AVR_ATmega32__)
6
#define SYSCLK  20000000L       //Quarz Frequenz in Hz
7
#endif
8
 
9
#if defined (__AVR_ATmega644__)
10
#define SYSCLK  20000000L       //Quarz Frequenz in Hz
11
//#define SYSCLK        16000000L       //Quarz Frequenz in Hz
12
#endif
13
 
14
// neue Hardware
15
#define ROT_OFF   {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB &=~0x01; else  PORTB |= 0x01;}
16
#define ROT_ON    {if((PlatinenVersion == 10)||(PlatinenVersion == 20)) PORTB |= 0x01; else  PORTB &=~0x01;}
17
#define ROT_FLASH PORTB ^= 0x01
18
#define GRN_OFF   {if((PlatinenVersion < 12)) PORTB &=~0x02; else PORTB |= 0x02;}
19
#define GRN_ON    {if((PlatinenVersion < 12)) PORTB |= 0x02; else PORTB &=~0x02;}
20
#define GRN_FLASH PORTB ^= 0x02
21
 
22
#define F_CPU SYSCLK
23
//#ifndef F_CPU
24
//#error ################## F_CPU nicht definiert oder ungültig #############
25
//#endif
26
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
27
#define EE_DATENREVISION 73 // wird angepasst, wenn sich die EEPROM-Daten geändert haben
28
 
29
#define EEPROM_ADR_VALID            1
30
#define EEPROM_ADR_ACTIVE_SET       2
31
#define EEPROM_ADR_LAST_OFFSET      3
32
 
33
#define EEPROM_ADR_ACC_NICK         4
34
#define EEPROM_ADR_ACC_ROLL         6
35
#define EEPROM_ADR_ACC_Z            8
1139 thjac 36
#define EEPROM_ADR_PITCH_MD_HOVER   10
1141 thjac 37
#define EEPROM_ADR_PITCH_NEUTRAL_DIFF 12
1134 thjac 38
 
39
#define EEPROM_ADR_PARAM_BEGIN      100
40
 
41
#define CFG_HOEHENREGELUNG       0x01
42
#define CFG_HOEHEN_SCHALTER      0x02
43
#define CFG_HEADING_HOLD         0x04
44
#define CFG_KOMPASS_AKTIV        0x08
45
#define CFG_KOMPASS_FIX          0x10
46
#define CFG_GPS_AKTIV            0x20
47
#define CFG_ACHSENKOPPLUNG_AKTIV 0x40
48
#define CFG_DREHRATEN_BEGRENZER  0x80
49
 
50
#define CFG_LOOP_OBEN       0x01
51
#define CFG_LOOP_UNTEN      0x02
52
#define CFG_LOOP_LINKS      0x04
53
#define CFG_LOOP_RECHTS     0x08
54
#define CFG_HIGHT_3SWITCH   0x10
55
 
56
//#define  SYSCLK
57
//extern unsigned long SYSCLK;
58
extern volatile int i_Nick[20],i_Roll[20],DiffNick,DiffRoll;
59
extern volatile unsigned char SenderOkay;
60
extern unsigned char CosinusNickWinkel, CosinusRollWinkel;
61
extern unsigned char PlatinenVersion;
62
extern unsigned char SendVersionToNavi;
63
void ReadParameterSet (unsigned char number, unsigned char *buffer, unsigned char length);
64
void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length);
65
extern unsigned char GetActiveParamSetNumber(void);
66
void SetActiveParamSetNumber(unsigned char number);
67
extern unsigned char EEPromArray[];
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 "_Settings.h"
81
#include "printf_P.h"
82
#include "timer0.h"
83
#include "uart.h"
84
#include "analog.h"
85
#include "twimaster.h"
86
#include "menu.h"
87
#include "rc.h"
88
#include "fc.h"
89
#include "gps.h"
90
#include "spi.h"
91
#include "led.h"
92
 
93
#define DIV_4   2
94
#define DIV_128 7
95
 
96
#define MUL_4   2
97
 
98
#ifndef EEMEM
99
#define EEMEM __attribute__ ((section (".eeprom")))
100
#endif
101
 
102
#define DEBUG_DISPLAY_INTERVALL  123 // in ms
103
 
104
 
105
#define DELAY_US(x)     ((unsigned int)( (x) * 1e-6 * F_CPU ))
106
 
107
#endif //_MAIN_H
108
 
109
 
110
 
111
 
112
 
113