Subversion Repositories FlightCtrl

Rev

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

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