Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
459 cascade 1
/****************************************************************************
2
 *   Copyright (C) 2009 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
 ****************************************************************************/
497 cascade 20
 
21
#include "main.h"
22
#include "max7456_software_spi.h"
23
#include "osd_helpers.h"
24
#include "osd_ncmode_default.h"
25
 
26
#if !(ALLCHARSDEBUG|(WRITECHARS != -1))
27
 
28
int osd_ncmode_default() {
29
        if (COSD_FLAGS & COSD_FLAG_HUD) {
30
                // write icons at init or after menu/mode-switch
31
                if (!(COSD_FLAGS2 & COSD_ICONS_WRITTEN)) {
32
                    write_char_xy(5, top_line, 0xCB); // km/h
33
                    write_char_xy(10, top_line, 0xCA); // RC-transmitter
34
                    write_char_xy(16, top_line, 0xD0); // degree symbol
35
                    write_char_xy(27, top_line, 0xCC); // small meters m height
36
                    write_char_xy(20, top_line + 1, 0xB0); // left circle
37
                    write_char_xy(22, top_line + 1, 0xB2); // right circle
38
                    write_char_xy(27, top_line + 1, 0xCC); // small meters m home
39
                    write_char_xy(7, bottom_line, 0x9E); // small V
40
                        if (COSD_FLAGS2 & COSD_FLAG_STROMREC) {
41
                                write_char_xy(7, bottom_line - 1, 0x9F); // small A
42
                                write_char_xy(14, bottom_line - 1, 0xB5); // mah
507 cascade 43
                                if (COSD_FLAGS & COSD_FLAG_STROMVOLT) {
44
                                        write_char_xy(21, bottom_line - 1, 0x9E); // small V
45
                                }
497 cascade 46
                        }
47
                    write_char_xy(14, bottom_line, 0xD1); // on clock
48
                    write_char_xy(21, bottom_line, 0xD2); // fly clock
49
                    write_char_xy(26, bottom_line, 0xC8); // sat1
50
                    write_char_xy(27, bottom_line, 0xC9); // sat2
51
                        COSD_FLAGS2 |= COSD_ICONS_WRITTEN;
471 cascade 52
                }
459 cascade 53
 
497 cascade 54
                // first line
519 cascade 55
                write_ndigit_number_u(2, top_line, (uint16_t) (((uint32_t) naviData.GroundSpeed * (uint32_t) 9) / (uint32_t) 250), 3, 0);
459 cascade 56
 
519 cascade 57
                write_ndigit_number_u(7, top_line, naviData.RC_Quality, 3, 0);
497 cascade 58
                if (naviData.RC_Quality <= RCLVL_WRN && last_RC_Quality > RCLVL_WRN) {
59
                    for (uint8_t x = 0; x < 4; x++)
60
                        write_char_att_xy(7 + x, top_line, BLINK);
61
                } else if (naviData.RC_Quality > RCLVL_WRN && last_RC_Quality <= RCLVL_WRN) {
62
                    for (uint8_t x = 0; x < 4; x++)
63
                        write_char_att_xy(7 + x, top_line, 0);
64
                }
471 cascade 65
 
459 cascade 66
 
497 cascade 67
                if (naviData.NCFlags & NC_FLAG_NOSERIALLINK) {
68
                    write_char_xy(11, top_line, 0); // clear
69
                } else {
70
                    write_char_xy(11, top_line, 0xC6); // PC icon
71
                }
459 cascade 72
 
519 cascade 73
                write_ndigit_number_u(13, top_line, naviData.CompassHeading, 3, 0);
459 cascade 74
 
497 cascade 75
                write_ascii_string_pgm(17, top_line, (const char *) (pgm_read_word ( &(directions[heading_conv(naviData.CompassHeading)]))));
459 cascade 76
 
497 cascade 77
                draw_variometer(21, top_line, naviData.Variometer);
459 cascade 78
 
497 cascade 79
                //note:lephisto:according to several sources it's /30
80
                if (naviData.Altimeter > 300 || naviData.Altimeter < -300) {
520 cascade 81
                        // above 10m only write full meters
82
                        write_ndigit_number_s(23, top_line, naviData.Altimeter / 30, 4, 0); // BARO
83
                        //write_ndigit_number_s(23, top_line, (int16_t) (naviData.CurrentPosition.Altitude / 1000), 4, 0); // GPS
497 cascade 84
                } else {
520 cascade 85
                        // up to 10m write meters.dm
86
                        write_ndigit_number_s_10th(23, top_line, naviData.Altimeter / 3, 3, 0); // BARO
87
                        //write_ndigit_number_s_10th(23, top_line, (int16_t) (naviData.CurrentPosition.Altitude / 1000), 3, 0); // GPS
88
                }
459 cascade 89
 
497 cascade 90
                // seccond line
91
                draw_compass(11, top_line + 1, naviData.CompassHeading);
459 cascade 92
 
497 cascade 93
                // TODO: verify correctness
94
                uint16_t heading_home = (naviData.HomePositionDeviation.Bearing + 360 - naviData.CompassHeading) % 360;
95
                //write_char_xy(21, top_line + 1, arrowdir[heading_conv(heading_home)]);
96
                // finer resolution, 0xa0 is first character and we add the index 0 <= index < 16
97
                write_char_xy(21, top_line + 1, 0xa0 + heading_fine_conv(heading_home));
459 cascade 98
 
519 cascade 99
                write_ndigit_number_u(24, top_line + 1, naviData.HomePositionDeviation.Distance / 10, 3, 0);
459 cascade 100
 
497 cascade 101
                // center
102
                if (naviData.MKFlags & FLAG_MOTOR_RUN) { // should be engines running
103
                    if (!(old_MKFlags & FLAG_MOTOR_RUN)) { // motors just started, clear middle
104
                        clear();
105
                        // update flags to paint display again if needed
106
                        COSD_FLAGS2 &= ~COSD_ICONS_WRITTEN;
107
                    }
108
                    if (COSD_FLAGS & COSD_FLAG_ARTHORIZON) {
109
                                if (COSD_FLAGS2 & COSD_FLAG_STROMREC) {
110
                                draw_artificial_horizon(top_line + 2, bottom_line - 2, naviData.AngleNick, naviData.AngleRoll);
111
                                } else {
112
                                draw_artificial_horizon(top_line + 2, bottom_line - 1, naviData.AngleNick, naviData.AngleRoll);
113
                                }
114
                    }
115
                    // motors are on, assume we were/are flying
116
                    COSD_FLAGS2 |= COSD_WASFLYING;
117
                } else {
118
                    // stats
119
                    if ((COSD_FLAGS2 & COSD_WASFLYING) && (COSD_FLAGS & COSD_FLAG_STATS)) {
120
                                uint8_t line = 3;
499 cascade 121
                        write_ascii_string_pgm(2, line, (const char *) (pgm_read_word(&(stats_item_pointers[0])))); // max Altitude
519 cascade 122
                        write_ndigit_number_s(18, line, max_Altimeter / 30, 4, 0);
497 cascade 123
                        write_char_xy(22, line, 204); // small meters m
499 cascade 124
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[1])))); // max Speed
519 cascade 125
                        write_ndigit_number_u(19, line, (uint16_t) (((uint32_t) max_GroundSpeed * (uint32_t) 9) / (uint32_t) 250), 3, 0);
497 cascade 126
                        write_char_xy(22, line, 203); // km/h
499 cascade 127
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[2])))); // max Distance
519 cascade 128
                        write_ndigit_number_u(19, line, max_Distance / 10, 3, 0);
497 cascade 129
                        write_char_xy(22, line, 204); // small meters m
499 cascade 130
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[3])))); // min voltage
519 cascade 131
                        write_ndigit_number_u_10th(18, line, min_UBat, 3, 0);
497 cascade 132
                        write_char_xy(22, line, 0x9E); // small V
133
                                if (COSD_FLAGS2 & COSD_FLAG_STROMREC) {
499 cascade 134
                                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[7])))); // ampere
519 cascade 135
                                        write_ndigit_number_u_10th(18, line, max_ampere / 10, 3, 0);
497 cascade 136
                                        write_char_xy(22, line, 0x9F); // small A
137
                                }
499 cascade 138
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[4])))); // max time
497 cascade 139
                        write_time(16, line, max_FlyingTime);
140
                        write_char_xy(22, line, 210); // fly clock
499 cascade 141
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[5])))); // longitude
497 cascade 142
                        write_gps_pos(15, line, naviData.CurrentPosition.Longitude);
499 cascade 143
                        write_ascii_string_pgm(2, ++line, (const char *) (pgm_read_word(&(stats_item_pointers[6])))); // latitude
497 cascade 144
                        write_gps_pos(15, line, naviData.CurrentPosition.Latitude);
145
                    } else if (COSD_FLAGS & COSD_FLAG_ARTHORIZON) { // if no stats there is space horizon
146
                                if (COSD_FLAGS2 & COSD_FLAG_STROMREC) {
147
                                draw_artificial_horizon(top_line + 2, bottom_line - 2, naviData.AngleNick, naviData.AngleRoll);
148
                                } else {
149
                                draw_artificial_horizon(top_line + 2, bottom_line - 1, naviData.AngleNick, naviData.AngleRoll);
150
                                }
151
                    }
152
                }
153
                if (COSD_FLAGS & COSD_FLAG_BIGVARIO) {
154
                    draw_big_variometer(27, 8, naviData.Variometer);
155
                }
459 cascade 156
 
497 cascade 157
                // pre-bottom line
158
                if (COSD_FLAGS2 & COSD_FLAG_STROMREC) {
519 cascade 159
                        //write_ndigit_number_s(3, bottom_line - 1, ampere, 4, 0);
160
                        write_ndigit_number_u_10th(3, bottom_line - 1, ampere / 10, 3, 0);
161
                        write_ndigit_number_s(10, bottom_line - 1, ampere_wasted / 10, 4, 0);
507 cascade 162
                        if (COSD_FLAGS & COSD_FLAG_STROMVOLT) {
519 cascade 163
                                write_ndigit_number_u_10th(17, bottom_line - 1, s_volt, 3, 0);
507 cascade 164
                        }
497 cascade 165
                }
465 cascade 166
 
497 cascade 167
                // bottom line
168
                draw_battery(2, bottom_line, min_voltage, naviData.UBat, max_voltage);
519 cascade 169
                write_ndigit_number_u_10th(3, bottom_line, naviData.UBat, 3, 0);
497 cascade 170
                if (naviData.UBat <= min_voltage && last_UBat > min_voltage) {
171
                    for (uint8_t x = 2; x < 8; x++)
172
                        write_char_att_xy(x, bottom_line, BLINK);
173
                } else if (naviData.UBat > min_voltage && last_UBat < min_voltage) {
174
                    for (uint8_t x = 2; x < 8; x++)
175
                        write_char_att_xy(x, bottom_line, 0);
176
                }
459 cascade 177
 
497 cascade 178
                write_time(8, bottom_line, uptime);
179
                write_time(15, bottom_line, naviData.FlyingTime);
459 cascade 180
 
519 cascade 181
                write_ndigit_number_u(24, bottom_line, naviData.SatsInUse, 2, 0);
459 cascade 182
 
497 cascade 183
                if (naviData.NCFlags & NC_FLAG_MANUAL_CONTROL) {
184
                    write_char_xy(23, bottom_line, 0xB3); // rc transmitter
185
                } else {
186
                    write_char_xy(23, bottom_line, 0); // clear
187
                }
188
 
189
                if (naviData.NCFlags & NC_FLAG_CH) {
190
                    write_char_xy(27, bottom_line, 231); // gps ch
191
                } else if (naviData.NCFlags & NC_FLAG_PH) {
192
                    write_char_xy(27, bottom_line, 230); // gps ph
193
                } else { // (naviData.NCFlags & NC_FLAG_FREE)
194
                    write_char_xy(27, bottom_line, 201); // sat2 (free)
195
                }
471 cascade 196
        }
459 cascade 197
 
497 cascade 198
        //write_number_s(8, 5, RxDataLen);
199
        //write_number_s(16, 5, setsReceived++);
200
 
201
        // remember statistics (only when engines running)
202
        if (naviData.MKFlags & FLAG_MOTOR_RUN) {
203
            if (naviData.Altimeter > max_Altimeter) max_Altimeter = naviData.Altimeter;
204
            if (naviData.GroundSpeed > max_GroundSpeed) max_GroundSpeed = naviData.GroundSpeed;
205
            if (naviData.HomePositionDeviation.Distance > max_Distance) {
206
                max_Distance = naviData.HomePositionDeviation.Distance;
207
            }
208
            if (naviData.UBat < min_UBat) min_UBat = naviData.UBat;
209
            if (naviData.FlyingTime > max_FlyingTime) max_FlyingTime = naviData.FlyingTime;
210
                if (ampere > max_ampere) max_ampere = ampere;
471 cascade 211
        }
459 cascade 212
 
497 cascade 213
        // remember last values
214
        last_RC_Quality = naviData.RC_Quality;
215
        last_UBat = naviData.UBat;
216
        old_MKFlags = naviData.MKFlags;
217
        seconds_since_last_data = 0;
459 cascade 218
 
497 cascade 219
        return 0;
459 cascade 220
}
221
 
497 cascade 222
#endif