Subversion Repositories FlightCtrl

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
715 Nick666 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
 
15
// neue Hardware
16
#define ROT_OFF   PORTB &=~(1<<PB0) 
17
#define ROT_ON    PORTB |= (1<<PB0) 
18
#define ROT_FLASH PORTB ^= (1<<PB0)
19
#define GRN_OFF   PORTB &=~(1<<PB1) 
20
#define GRN_ON    PORTB |= (1<<PB1)
21
#define GRN_FLASH PORTB ^= (1<<PB1)
22
 
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
33
#define EEPROM_ADR_LAST_OFFSET          3
34
 
35
#define CFG_HOEHENREGELUNG  0x01
36
#define CFG_HOEHEN_SCHALTER 0x02
37
#define CFG_HEADING_HOLD    0x04
38
#define CFG_KOMPASS_AKTIV   0x08
39
#define CFG_KOMPASS_FIX     0x10
40
#define CFG_GPS_AKTIV       0x20
41
 
42
 
43
extern void ReadParameterSet (unsigned char number, unsigned char *buffer, unsigned char length);
44
extern void WriteParameterSet(unsigned char number, unsigned char *buffer, unsigned char length);
45
extern unsigned char GetActiveParamSetNumber(void);
46
extern unsigned char EEPromArray[];
47
 
48
#include <stdlib.h>
49
#include <string.h>
50
#include <avr/io.h>
51
#include <avr/pgmspace.h>
52
#include <avr/interrupt.h>
53
#include <avr/eeprom.h>
54
#include <avr/boot.h>
55
#include <avr/wdt.h>
56
 
57
#include "old_macros.h"
58
 
59
#include "_settings.h"
60
#include "printf_P.h"
61
#include "compass.h"
62
#include "timer0.h"
63
#include "uart.h"
64
#include "analog.h"
65
#include "twimaster.h"
66
#include "menu.h"
67
#include "rc.h"
68
#include "fc.h"
69
#include "gps.h"
70
#include "mymath.h"
71
 
72
#ifndef EEMEM
73
#define EEMEM __attribute__ ((section (".eeprom")))
74
#endif
75
 
76
#define DEBUG_DISPLAY_INTERVALL  123 // in ms
77
 
78
 
79
#define DELAY_US(x)     ((unsigned int)( (x) * 1e-6 * F_CPU ))
80
 
81
#endif //_MAIN_H
82
 
83
 
84
 
85
 
86
 
87