Subversion Repositories FlightCtrl

Rev

Rev 592 | 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
593 dynahenry 21
//-------------H.F.------------
22
#define LED1_ON   PORTC |= 0x04
23
#define LED1_OFF  PORTC &=~0x04
24
#define LED2_ON   PORTC |= 0x08
25
#define LED2_OFF  PORTC &=~0x08
26
//-------------H.F.------------
1 ingob 27
 
304 ingob 28
#define F_CPU SYSCLK
1 ingob 29
//#ifndef F_CPU
30
//#error ################## F_CPU nicht definiert oder ungültig #############
31
//#endif
32
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
 
34
#define EEPROM_ADR_VALID            1
35
#define EEPROM_ADR_ACTIVE_SET       2
173 holgerb 36
#define EEPROM_ADR_LAST_OFFSET      3
1 ingob 37
 
513 hbuss 38
#define EEPROM_ADR_ACC_NICK         4
39
#define EEPROM_ADR_ACC_ROLL         6
40
#define EEPROM_ADR_ACC_Z            8
41
 
1 ingob 42
#define EEPROM_ADR_PARAM_BEGIN      100
43
 
395 hbuss 44
#define CFG_HOEHENREGELUNG       0x01
45
#define CFG_HOEHEN_SCHALTER      0x02
46
#define CFG_HEADING_HOLD         0x04
47
#define CFG_KOMPASS_AKTIV        0x08
48
#define CFG_KOMPASS_FIX          0x10
49
#define CFG_GPS_AKTIV            0x20
50
#define CFG_ACHSENKOPPLUNG_AKTIV 0x40
51
#define CFG_DREHRATEN_BEGRENZER  0x80
1 ingob 52
 
173 holgerb 53
#define CFG_LOOP_OBEN       0x01
54
#define CFG_LOOP_UNTEN      0x02
55
#define CFG_LOOP_LINKS      0x04
56
#define CFG_LOOP_RECHTS     0x08
1 ingob 57
 
58
//#define  SYSCLK  
59
//extern unsigned long SYSCLK;
60
extern volatile int i_Nick[20],i_Roll[20],DiffNick,DiffRoll;
61
extern volatile unsigned char SenderOkay;
62
extern unsigned char CosinusNickWinkel, CosinusRollWinkel;
173 holgerb 63
extern unsigned char PlatinenVersion;
1 ingob 64
 
304 ingob 65
void ReadParameterSet (unsigned char number, unsigned char *buffer, unsigned char length);
66
void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length);
1 ingob 67
extern unsigned char GetActiveParamSetNumber(void);
68
extern unsigned char EEPromArray[];
69
 
70
#include <stdlib.h>
71
#include <string.h>
72
#include <avr/io.h>
73
#include <avr/pgmspace.h>
74
#include <avr/interrupt.h>
75
#include <avr/eeprom.h>
76
#include <avr/boot.h>
77
#include <avr/wdt.h>
78
 
79
#include "old_macros.h"
80
 
395 hbuss 81
#include "_Settings.h"
1 ingob 82
#include "printf_P.h"
83
#include "timer0.h"
84
#include "uart.h"
85
#include "analog.h"
86
#include "twimaster.h"
87
#include "menu.h"
88
#include "rc.h"
89
#include "fc.h"
90
#include "gps.h"
304 ingob 91
#include "spi.h"
1 ingob 92
 
304 ingob 93
 
1 ingob 94
#ifndef EEMEM
95
#define EEMEM __attribute__ ((section (".eeprom")))
96
#endif
97
 
98
#define DEBUG_DISPLAY_INTERVALL  123 // in ms
99
 
100
 
101
#define DELAY_US(x)     ((unsigned int)( (x) * 1e-6 * F_CPU ))
102
 
103
#endif //_MAIN_H
104
 
105
 
106
 
107
 
108
 
109