Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1734 - 1
/*****************************************************************************
2
 *   Copyright (C) 2008 Thomas Kaiser, thomas@ft-fanpage.de                  *
3
 *   Copyright (C) 2009 Peter "woggle" Mack, mac@denich.net                  *
4
 *   Copyright (C) 2012 Christian "Cebra" Brandtner, brandtner@brandtner.net *
5
 *   Copyright (C) 2012 Harald Bongartz                                      *
6
 *                                                                           *
7
 *   This program is free software; you can redistribute it and/or modify    *
8
 *   it under the terms of the GNU General Public License as published by    *
9
 *   the Free Software Foundation; either version 2 of the License.          *
10
 *                                                                           *
11
 *   This program is distributed in the hope that it will be useful,         *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of          *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
14
 *   GNU General Public License for more details.                            *
15
 *                                                                           *
16
 *   You should have received a copy of the GNU General Public License       *
17
 *   along with this program; if not, write to the                           *
18
 *   Free Software Foundation, Inc.,                                         *
19
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.               *
20
 *                                                                           *
21
 *                                                                           *
22
 *   Credits to:                                                             *
23
 *   Holger Buss & Ingo Busker from mikrokopter.de for the MK project + SVN  *
24
 *                          http://www.mikrokopter.de                        *
25
 *   Gregor "killagreg" Stobrawa for his version of the MK code              *
26
 *   Thomas Kaiser "thkais" for the original project. See                    *
27
 *                          http://www.ft-fanpage.de/mikrokopter/            *
28
 *                          http://forum.mikrokopter.de/topic-4061-1.html    *
29
 *   Claas Anders "CaScAdE" Rathje for providing the font and his C-OSD code *
30
 *                          http://www.mylifesucks.de/oss/c-osd/             *
31
 *   Harald Bongartz "HaraldB" for providing his Ideas and Code for usibility*
32
 *****************************************************************************/
33
/**
34
 * @Author Cebra
35
 *
36
 * ${tags}
37
 */
38
//**
39
// *
40
// *
41
// *
42
//
43
/*
44
* File name: $HeadURL: http://mikrokopter.de/mikrosvn/Projects/Transportables_Koptertool/branch/GPL_PKT_V3_5_8a_FC086/main.h $
45
* Revision: $Revision: 1496 $
46
* Last modified: $Date: 2012-01-15 21:31:25 +0100 (So, 15 Jan 2012) $
47
* Last modified by: $Author: $
48
* $Id: main.h 1496 2012-01-15 20:31:25Z  $
49
*/
50
#ifndef _MAIN_H
51
#define _MAIN_H
52
 
53
// Version der Software
54
#define PKTSWVersion "3.6.3a" // PKT Version
55
 
56
 
57
//#define DEBUG
58
 
59
 
60
// Fusebits für Hardware 1.2 D7 DC FC
61
// Fusebits für Hardware 1.3
62
// Fusebits für Hardware 3.x D7 DC FC
63
// avrdude -pm1284p -cavr109 -P/dev/ttyUSB1 -b115200 -V -Uflash:w:Dateiname.hex:a
64
 
65
 
66
// hier die entsprechende Hardwareversion der Leiterplatte einstellen
67
 
68
// MartinR: Hardwareversion jetzt in der makefile !!!!!!!!!!!!!
69
 
70
//#define HWVERSION1_2   // Hardware sebseb7
71
//#define HWVERSION1_2W  // Hardware sebseb7 mit Wi232 Support
72
//#define HWVERSION1_3   // Hardware sebseb7
73
//#define HWVERSION1_3W  // Hardware sebseb7 mit Wi232 Support
74
 
75
//#define HWVERSION3_9   // Hardware Cebra Oktober 2011 ATmega1284P
76
 
77
 
78
 
79
//#define ohne_Lipo     // MartinR zur Abschaltung der Lipo-Überwachung
80
 
81
#if defined HWVERSION1_2W || defined HWVERSION1_2
82
#include "HAL_HW1_2.h"
83
#endif
84
 
85
#if defined HWVERSION1_3W || defined HWVERSION1_3
86
#include "HAL_HW1_3.h"
87
#endif
88
 
89
#if defined HWVERSION3_9
90
#include "HAL_HW3_9.h"
91
#endif
92
 
93
#define NO     0
94
#define NC     1
95
#define FC     2
96
#define MK3MAG 3
97
#define MKGPS  4
98
#define Wi232  5
99
 
100
#define ENABLE_PWM
101
 
102
 
103
 
104
// Menueleiste am unteren Rand definieren
105
//
106
// 11 <>  Change
107
//
108
// 12 /\  Up     13 \/  Down     14 <   Left     15 >   Right
109
//
110
// 16 /|\ Arrow up     17 \|/ Arrow down     18 <-  Arrow left     19 ->  Arrow right
111
//
112
// 1A  ^  Triangle up     1B  v  Triangle down     1C  <  Triangle left     1D  >  Triangle right
113
//
114
//                 "01   234567   8901234567890"
115
//                 "|O   |||||O   |||||O|||||O|"
116
//
117
//#define KEY_LINE_1 " \x1a     \x1b    Ende   OK"
118
//#define KEY_LINE_2 " \x18     \x19    Ende   OK"
119
//#define KEY_LINE_3 " \x18     \x19    Ende"
120
 
121
 
122
extern volatile uint8_t mode;
123
extern uint8_t hardware;
124
extern uint8_t current_hardware;
125
 
126
 
127
#endif