Subversion Repositories FlightCtrl

Rev

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