Subversion Repositories FlightCtrl

Rev

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

Rev Author Line No. Line
662 salvo 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) PORTB &=~0x01; else  PORTB |= 0x01;}
16
#define ROT_ON    {if(PlatinenVersion == 10) PORTB |= 0x01; else  PORTB &=~0x01;}
17
#define ROT_FLASH PORTB ^= 0x01
18
#define GRN_OFF   PORTB &=~0x02 
19
#define GRN_ON    PORTB |= 0x02 
20
#define GRN_FLASH PORTB ^= 0x02
21
 
22
 
23
//Salvo 9.12.2007 Umschaltsignal fuer Bluetooth bzw. GPS Daten auf PC7
24
#define RX_SWTCH_ON  PORTC |=  0x40 
25
#define RX_SWTCH_OFF PORTC &= ~0x40 
26
#define LED_J16_ON  PORTC |=  0x04
27
#define LED_J16_OFF PORTC &= ~0x04 
28
#define LED_J16_FLASH PORTC ^= 0x04 
29
//Salvo End
30
 
31
#define F_CPU SYSCLK
32
//#ifndef F_CPU
33
//#error ################## F_CPU nicht definiert oder ungültig #############
34
//#endif
35
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
36
 
37
#define EEPROM_ADR_VALID            1
38
#define EEPROM_ADR_ACTIVE_SET       2
39
#define EEPROM_ADR_LAST_OFFSET      3
40
 
41
#define EEPROM_ADR_ACC_NICK         4
42
#define EEPROM_ADR_ACC_ROLL         6
43
#define EEPROM_ADR_ACC_Z            8
44
 
45
#define EEPROM_ADR_PARAM_BEGIN      100
46
 
47
#define CFG_HOEHENREGELUNG       0x01
48
#define CFG_HOEHEN_SCHALTER      0x02
49
#define CFG_HEADING_HOLD         0x04
50
#define CFG_KOMPASS_AKTIV        0x08
51
#define CFG_KOMPASS_FIX          0x10
52
#define CFG_GPS_AKTIV            0x20
53
#define CFG_ACHSENKOPPLUNG_AKTIV 0x40
54
#define CFG_DREHRATEN_BEGRENZER  0x80
55
 
56
#define CFG_LOOP_OBEN       0x01
57
#define CFG_LOOP_UNTEN      0x02
58
#define CFG_LOOP_LINKS      0x04
59
#define CFG_LOOP_RECHTS     0x08
60
 
61
//#define  SYSCLK  
62
//extern unsigned long SYSCLK;
63
extern volatile int i_Nick[20],i_Roll[20],DiffNick,DiffRoll;
64
extern volatile unsigned char SenderOkay;
65
extern unsigned char CosinusNickWinkel, CosinusRollWinkel;
66
extern unsigned char PlatinenVersion;
67
 
68
void ReadParameterSet (unsigned char number, unsigned char *buffer, unsigned char length);
69
void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length);
70
extern unsigned char GetActiveParamSetNumber(void);
71
extern unsigned char EEPromArray[];
72
 
73
#include <stdlib.h>
74
#include <string.h>
75
#include <avr/io.h>
76
#include <avr/pgmspace.h>
77
#include <avr/interrupt.h>
78
#include <avr/eeprom.h>
79
#include <avr/boot.h>
80
#include <avr/wdt.h>
81
 
82
#include "old_macros.h"
83
 
84
#include "_Settings.h"
85
#include "printf_P.h"
86
#include "timer0.h"
87
#include "uart.h"
88
#include "analog.h"
89
#include "twimaster.h"
90
#include "menu.h"
91
#include "rc.h"
92
#include "fc.h"
93
#include "gps.h"
94
#include "spi.h"
95
 
96
 
97
#ifndef EEMEM
98
#define EEMEM __attribute__ ((section (".eeprom")))
99
#endif
100
 
101
#define DEBUG_DISPLAY_INTERVALL  123 // in ms
102
 
103
 
104
#define DELAY_US(x)     ((unsigned int)( (x) * 1e-6 * F_CPU ))
105
 
106
#endif //_MAIN_H
107
 
108
 
109
 
110
 
111
 
112