Subversion Repositories FlightCtrl

Rev

Rev 1021 | Rev 1063 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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