Subversion Repositories Projects

Rev

Rev 1482 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1471 - 1
/*****************************************************************************
2
 *   Copyright (C) 2008 Thomas Kaiser, thomas@ft-fanpage.de                  *
3
 *   Copyright (C) 2009 Peter "woggle" Mack, mac@denich.net                  *
4
 *   Copyright (C) 2011 Christian "Cebra" Brandtner, brandtner@brandtner.net *
5
 *   Copyright (C) 2011 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
 
1483 - 34
///**
35
// * @author Cebra
36
// *
37
// * $(tags)
38
// */
39
// File name: $HeadURL: file:///var/www/vhosts/mikrokopter.de/svn/mikrosvn/Projects/Transportables_Koptertool/branch/GPL_PKT_V3_5_8a_FC086/main.h $
40
// Revision: $Revision: 1483 $
41
// Last modified: $Date: 2012-01-15 19:25:25 +0100 (Sun, 15 Jan 2012) $
42
// Last modified by: $Author: $
43
// $Id$
1471 - 44
 
45
#ifndef _MAIN_H
46
#define _MAIN_H
47
 
48
// Version der Software
1483 - 49
#define PKTSWVersion "3.5.8a" // 1. SVN Version test
1471 - 50
 
51
 
52
//#define DEBUG
53
 
54
 
55
// Fusebits für Hardware 1.2 D7 DC FC
56
// Fusebits für Hardware 1.3
57
// Fusebits für Hardware 3.x D7 DC FC
58
// avrdude -pm1284p -cavr109 -P/dev/ttyUSB1 -b115200 -V -Uflash:w:Dateiname.hex:a
59
 
60
 
61
// hier die entsprechende Hardwareversion der Leiterplatte einstellen
62
 
63
//#define HWVERSION1_2   // Hardware sebseb7
64
//#define HWVERSION1_2W  // Hardware sebseb7 mit Wi232 Support
65
//#define HWVERSION1_3   // Hardware sebseb7
66
//#define HWVERSION1_3W  // Hardware sebseb7 mit Wi232 Support
67
//#define HWVERSION3_1   // Test Hardware Cebra Juni 2011
68
#define HWVERSION3_9   // Hardware Cebra Oktober 2011 ATmega1284P
69
 
70
 
71
#if defined HWVERSION1_2W || defined HWVERSION1_2
72
#include "HAL_HW1_2.h"
73
#endif
74
 
75
#if defined HWVERSION1_3W || defined HWVERSION1_3
76
#include "HAL_HW1_3.h"
77
#endif
78
 
79
#ifdef HWVERSION3_9
80
#include "HAL_HW3_9.h"
81
#endif
82
 
83
#define NO     0
84
#define NC     1
85
#define FC     2
86
#define MK3MAG 3
87
#define MKGPS  4
88
#define Wi232  5
89
 
90
#define ENABLE_PWM
91
 
92
 
93
 
94
// Menueleiste am unteren Rand definieren
95
//
96
// 11 <>  Change
97
//
98
// 12 /\  Up     13 \/  Down     14 <   Left     15 >   Right
99
//
100
// 16 /|\ Arrow up     17 \|/ Arrow down     18 <-  Arrow left     19 ->  Arrow right
101
//
102
// 1A  ^  Triangle up     1B  v  Triangle down     1C  <  Triangle left     1D  >  Triangle right
103
//
104
//                 "01   234567   8901234567890"
105
//                 "|O   |||||O   |||||O|||||O|"
106
//
107
//#define KEY_LINE_1 " \x1a     \x1b    Ende   OK"
108
//#define KEY_LINE_2 " \x18     \x19    Ende   OK"
109
//#define KEY_LINE_3 " \x18     \x19    Ende"
110
 
111
 
112
extern volatile uint8_t mode;
113
extern uint8_t hardware;
114
extern uint8_t current_hardware;
115
 
116
 
117
#endif