Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
902 - 1
/****************************************************************************
2
 *   Copyright (C) 2009-2011 by Claas Anders "CaScAdE" Rathje               *
3
 *   admiralcascade@gmail.com                                               *
4
 *   Project-URL: http://www.mylifesucks.de/oss/c-osd/                      *
5
 *                                                                          *
6
 *   This program is free software; you can redistribute it and/or modify   *
7
 *   it under the terms of the GNU General Public License as published by   *
8
 *   the Free Software Foundation; either version 2 of the License.         *
9
 *                                                                          *
10
 *   This program is distributed in the hope that it will be useful,        *
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
13
 *   GNU General Public License for more details.                           *
14
 *                                                                          *
15
 *   You should have received a copy of the GNU General Public License      *
16
 *   along with this program; if not, write to the                          *
17
 *   Free Software Foundation, Inc.,                                        *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
19
 ****************************************************************************/
20
 
21
#ifndef _MAIN_H
22
#define _MAIN_H
23
 
24
#ifndef MCU
25
#define MCU atmega162
26
#endif
27
 
28
#ifndef __AVR_ATmega162__
29
#define __AVR_ATmega162__
30
#endif
31
 
32
 
33
#include <avr/pgmspace.h>
34
#include "mk-data-structs.h"
35
 
36
/* ##########################################################################
37
 * Debugging and general purpose definitions
38
 * ##########################################################################*/
39
#ifndef BUILDDATE
40
#define BUILDDATE "DEVEL-BUILD" // build date, this is testing...
41
#endif
42
 
43
#define ALLCHARSDEBUG 0         // set to 1 and flash firmware to see all chars
44
 
45
#ifndef WRITECHARS              // if WRITECHARS not set via makefile
46
#define WRITECHARS -1           // set to 1 and flash firmware to write all chars
47
#endif
48
 
49
#ifndef NTSC                    // if NTSC is not thet via makefile
50
#define NTSC 0                  // set to 1 for NTSC mode + lifts the bottom line
51
#endif
52
 
53
#ifndef FCONLY
54
#define FCONLY 0                // set to 1 if you do NOT have a NaviCtrl and the OSD is
55
#endif                          // connected to the FC directly
56
 
57
#define HUD 1                    // set to 0 to disable HUD by default
58
#define ARTHORIZON 0            // set to 1 to enable roll&nick artificial horizon by default
59
#define BIGVARIO 0              // set to 1 to enable the big vario bar on right side
60
#define STATS 1                 // set to 1 to enable statistics during motor off by default
61
#define WARNINGS 1              // set to 1 to display battery+rc warning even if HUD is disabled
62
 
63
//#define UBAT_WRN  94          // voltage for blinking warning, like FC settings (deprecated)
64
//#define UBAT_MAX 114          // maximal battery voltage for battery-sign (deprecated)
65
#define CELL_VOLT_MAX 37        // max voltage per battery cell (37 for LiPo)
66
#define CELL_VOLT_MIN 32        // min voltage per battery cell (maybe 32 for LiPo?)
67
#define CELL_NUM -1             // -1 for auto, 3 for 3s1p and 4 for 4s1p
68
#define RCLVL_WRN 100           // make the RC level blink if below this number
69
 
70
// ### read datasheet before changing stuff below this line :)
71
#define BLINK   0b01001111      // attribute byte for blinking characters
72
#define INVERT  0b00101111      // attribute byte for inverted characters
73
#define BLACKBG 0b10001111      // attribute byte for _black background_ on characters
74
 
75
// ### constants
76
#define MtoFT 32808399 // 3,2808399
77
 
78
// ### Antenna Tracking
79
//#define ANTENNATRACKTEST 1
80
 
932 - 81
// ### serial output of stuff sent to MAX7456
82
//#define SERIALDEBUGDRAW 1
83
 
902 - 84
/* ##########################################################################
85
 * FLAGS usable during runtime that get saved
86
 * ##########################################################################*/
87
#define COSD_FLAG_HUD                     1
88
#define COSD_FLAG_ARTHORIZON              2
89
#define COSD_FLAG_BIGVARIO                4
90
#define COSD_FLAG_STATS                   8
91
#define COSD_FLAG_WARNINGS               16
92
#define COSD_FLAG_STROMVOLT              32
93
#define COSD_FLAG_FCCURRENT              64
94
#define COSD_FLAG_AGGRHORIZON           128
95
 
96
 
97
#define COSD_FLAG_NTSC                    1
98
#define COSD_FLAG_GPSHEIGHT               2
99
#define COSD_FLAG_FCMODE                  4
100
#define COSD_FLAG_FEET                    8
101
#define COSD_FLAG_PASSIVE                16
102
#define COSD_FLAG_SHOW_SCOPE             32
103
#define COSD_FLAG_SHOW_COORDS            64
104
#define COSD_FLAG_BIGSPEED              128
105
 
106
/* ##########################################################################
107
 * FLAGS only usable during runtime (not saved)
108
 * ##########################################################################*/
109
#define COSD_FLAG_STROMREC                1
110
#define COSD_ICONS_WRITTEN                2
111
#define COSD_WASFLYING                    4
112
#define COSD_DATARECEIVED                 8
113
 
114
/* ##########################################################################
115
 * LED controll
116
 * ##########################################################################*/
117
#define LED1_ON                 PORTC |=  (1 << PC0);
118
#define LED1_OFF                PORTC &= ~(1 << PC0);
119
#define LED2_ON                 PORTC |=  (1 << PC1);
120
#define LED2_OFF                PORTC &= ~(1 << PC1);
121
#define LED3_ON                 PORTC |=  (1 << PC2);
122
#define LED3_OFF                PORTC &= ~(1 << PC2);
123
#define LED4_ON                 PORTC |=  (1 << PC3);
124
#define LED4_OFF                PORTC &= ~(1 << PC3);
125
 
126
/* ##########################################################################
127
 * switch controll
128
 * ##########################################################################*/
129
#define S1_PRESSED              !(PINC & (1<<PC5))
130
#define S2_PRESSED              !(PINC & (1<<PC4))
131
 
132
 
133
/* ##########################################################################
134
 * extern spi controlled vars
135
 * ##########################################################################*/
136
extern volatile uint16_t icnt;
137
extern volatile unsigned char * iptr;
138
extern volatile uint8_t spi_cmd_buffer[];
139
extern volatile uint8_t spi_ready;
140
extern int16_t ampere, max_ampere, s_volt;
141
extern int32_t ampere_wasted;
142
 
143
/* ##########################################################################
144
 * struct for displaymodes
145
 * ##########################################################################*/
146
typedef struct {
147
    int (*dfun)(void); // function pointer
148
    char *desc; // description text
149
} displaymode_t;
150
 
151
const displaymode_t ncdisplaymodes[2];
152
const displaymode_t fcdisplaymodes[2];
153
 
154
int (*osd_ncmode)(void);
155
int (*osd_fcmode)(void);
156
 
157
/* ##########################################################################
158
 * vars used by other parts as well
159
 * ##########################################################################*/
160
volatile uint16_t setsReceived;
161
 
162
volatile NaviData_t naviData;
163
volatile str_DebugOut debugData;
164
 
165
// cache old vars for blinking attribute, checkup is faster than full
166
// attribute write each time
167
volatile uint8_t last_UBat;
168
volatile uint8_t last_RC_Quality;
169
 
170
// 16bit should be enough, normal LiPos don't last that long
171
volatile uint16_t uptime;
172
volatile uint16_t timer;
173
volatile uint16_t flytime_fc;
174
volatile uint16_t wasted_ampere_offset;
175
 
176
// remember last time data was received
177
volatile uint8_t seconds_since_last_data;
178
 
179
// general PAL|NTSC distingiusch stuff
180
uint8_t top_line;
181
uint8_t bottom_line;
182
 
183
// battery voltages
184
uint8_t min_voltage;
185
uint8_t max_voltage;
186
 
187
// scope for 2nd camera field of view
188
uint8_t scope[12];
189
 
190
// Flags
191
uint8_t COSD_FLAGS_MODES, COSD_FLAGS_CONFIG, COSD_FLAGS_RUNTIME, COSD_DISPLAYMODE;
192
 
193
// stats for after flight
194
int16_t max_Altimeter, altimeter_offset;
195
uint8_t min_UBat;
196
 
197
uint16_t max_GroundSpeed;
198
int16_t max_Distance;
199
uint16_t max_FlyingTime;
200
 
201
// flags from last round to check for changes
202
uint8_t old_MKFlags;
203
uint8_t old_NCFlags;
204
 
205
const char *directions[8];
206
const char *stats_item_pointers[8];
207
 
208
#endif