Subversion Repositories Projects

Rev

Rev 2099 | Rev 2598 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2099 Rev 2225
1
/****************************************************************************
1
/****************************************************************************
2
 *   Copyright (C) 2009-2015 by Claas Anders "CaScAdE" Rathje               *
2
 *   Copyright (C) 2009-2016 by Claas Anders "CaScAdE" Rathje               *
3
 *   admiralcascade@gmail.com                                               *
3
 *   admiralcascade@gmail.com                                               *
4
 *   Project-URL: http://www.mylifesucks.de/oss/c-osd/                      *
4
 *   Project-URL: http://www.mylifesucks.de/oss/c-osd/                      *
5
 *                                                                          *
5
 *                                                                          *
6
 *   This program is free software; you can redistribute it and/or modify   *
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   *
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.         *
8
 *   the Free Software Foundation; either version 2 of the License.         *
9
 *                                                                          *
9
 *                                                                          *
10
 *   This program is distributed in the hope that it will be useful,        *
10
 *   This program is distributed in the hope that it will be useful,        *
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of         *
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
13
 *   GNU General Public License for more details.                           *
13
 *   GNU General Public License for more details.                           *
14
 *                                                                          *
14
 *                                                                          *
15
 *   You should have received a copy of the GNU General Public License      *
15
 *   You should have received a copy of the GNU General Public License      *
16
 *   along with this program; if not, write to the                          *
16
 *   along with this program; if not, write to the                          *
17
 *   Free Software Foundation, Inc.,                                        *
17
 *   Free Software Foundation, Inc.,                                        *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.              *
19
 ****************************************************************************/
19
 ****************************************************************************/
20
 
20
 
21
#include "main.h"
21
#include "main.h"
22
#include <avr/pgmspace.h> 
22
#include <avr/pgmspace.h> 
23
#include "osd_helpers.h"
23
#include "osd_helpers.h"
24
#include "max7456_software_spi.h"
24
#include "max7456_software_spi.h"
25
 
25
 
26
#if !(ALLCHARSDEBUG|(WRITECHARS != -1))
26
#if !(ALLCHARSDEBUG|(WRITECHARS != -1))
27
 
27
 
28
/* ##########################################################################
28
/* ##########################################################################
29
 * compass stuff
29
 * compass stuff
30
 * ##########################################################################*/
30
 * ##########################################################################*/
31
 
31
 
32
/**
32
/**
33
 * convert the <heading> gotton from NC into an index
33
 * convert the <heading> gotton from NC into an index
34
 */
34
 */
35
uint8_t heading_conv(uint16_t heading) {
35
uint8_t heading_conv(uint16_t heading) {
36
    if (heading > 23 && heading < 68) {
36
    if (heading > 23 && heading < 68) {
37
        //direction = "NE";
37
        //direction = "NE";
38
        return 0;
38
        return 0;
39
    } else if (heading > 67 && heading < 113) {
39
    } else if (heading > 67 && heading < 113) {
40
        //direction = "E ";
40
        //direction = "E ";
41
        return 1;
41
        return 1;
42
    } else if (heading > 112 && heading < 158) {
42
    } else if (heading > 112 && heading < 158) {
43
        //direction = "SE";
43
        //direction = "SE";
44
        return 2;
44
        return 2;
45
    } else if (heading > 157 && heading < 203) {
45
    } else if (heading > 157 && heading < 203) {
46
        //direction = "S ";
46
        //direction = "S ";
47
        return 3;
47
        return 3;
48
    } else if (heading > 202 && heading < 248) {
48
    } else if (heading > 202 && heading < 248) {
49
        //direction = "SW";
49
        //direction = "SW";
50
        return 4;
50
        return 4;
51
    } else if (heading > 247 && heading < 293) {
51
    } else if (heading > 247 && heading < 293) {
52
        //direction = "W ";
52
        //direction = "W ";
53
        return 5;
53
        return 5;
54
    } else if (heading > 292 && heading < 338) {
54
    } else if (heading > 292 && heading < 338) {
55
        //direction = "NW";
55
        //direction = "NW";
56
        return 6;
56
        return 6;
57
    }
57
    }
58
    //direction = "N ";
58
    //direction = "N ";
59
    return 7;
59
    return 7;
60
}
60
}
61
 
61
 
62
/**
62
/**
63
 * convert the <heading> gotton from NC into a more
63
 * convert the <heading> gotton from NC into a more
64
 * precise index
64
 * precise index
65
 */
65
 */
66
uint8_t heading_fine_conv(uint16_t heading) {
66
uint8_t heading_fine_conv(uint16_t heading) {
67
    heading = ((heading * 10) + 113) % 3600;
67
    heading = ((heading * 10) + 113) % 3600;
68
    return (heading / 225);
68
    return (heading / 225);
69
}
69
}
70
 
70
 
71
/**
71
/**
72
 * draw a compass rose at <x>/<y> for <heading>
72
 * draw a compass rose at <x>/<y> for <heading>
73
 */
73
 */
74
void draw_compass(uint8_t x, uint8_t y, uint16_t heading) {
74
void draw_compass(uint8_t x, uint8_t y, uint16_t heading) {
75
    //char* rose = "---N---O---S---W---N---O---S---W---N---O---S---W";
75
    //char* rose = "---N---O---S---W---N---O---S---W---N---O---S---W";
76
    static const char rose[] PROGMEM = {216, 215, 216, 211, 216, 215, 216, 213, 216, 215, 216, 212,
76
    static const char rose[] PROGMEM = {216, 215, 216, 211, 216, 215, 216, 213, 216, 215, 216, 212,
77
        216, 215, 216, 214, 216, 215, 216, 211, 216, 215, 216, 213,
77
        216, 215, 216, 214, 216, 215, 216, 211, 216, 215, 216, 213,
78
        216, 215, 216, 212, 216, 215, 216, 214, 216, 215, 216, 211,
78
        216, 215, 216, 212, 216, 215, 216, 214, 216, 215, 216, 211,
79
        216, 215, 216, 213, 216, 215, 216, 212, 216, 215, 216, 214};
79
        216, 215, 216, 213, 216, 215, 216, 212, 216, 215, 216, 214};
80
    // the center is char 19 (north), we add the current heading in 8th
80
    // the center is char 19 (north), we add the current heading in 8th
81
    // which would be 22.5 degrees, but float would bloat up the code
81
    // which would be 22.5 degrees, but float would bloat up the code
82
    // and *10 / 225 would take ages... so we take the uncorrect way
82
    // and *10 / 225 would take ages... so we take the uncorrect way
83
    uint8_t front = 19 + ((heading % 360) / 22);
83
    uint8_t front = 19 + ((heading % 360) / 22);
84
    for (uint8_t i = 0; i < 9; i++) {
84
    for (uint8_t i = 0; i < 9; i++) {
85
        write_char_xy(x++, y, pgm_read_byte(&rose[front - 4 + i]));
85
        write_char_xy(x++, y, pgm_read_byte(&rose[front - 4 + i]));
86
    }
86
    }
87
}
87
}
88
 
88
 
89
/* ##########################################################################
89
/* ##########################################################################
90
 * battery index
90
 * battery index
91
 * ##########################################################################*/
91
 * ##########################################################################*/
92
 
92
 
93
/**
93
/**
94
 * draw a battery symbol at <x>/<y> according to <voltage>
94
 * draw a battery symbol at <x>/<y> according to <voltage>
95
 */
95
 */
96
void draw_battery(uint8_t x, uint8_t y, uint8_t min_voltage, uint8_t voltage, uint8_t max_voltage) {
96
void draw_battery(uint8_t x, uint8_t y, uint8_t min_voltage, uint8_t voltage, uint8_t max_voltage) {
97
    uint8_t percent = (100 * (voltage - min_voltage) / (max_voltage - min_voltage));
97
    uint8_t percent = (100 * (voltage - min_voltage) / (max_voltage - min_voltage));
98
    if (percent > 100) percent = 100;
98
    if (percent > 100) percent = 100;
99
    if (voltage < min_voltage) percent = 0;
99
    if (voltage < min_voltage) percent = 0;
100
    write_char_xy(x, y, 0x9d - (percent * 13 / 100));
100
    write_char_xy(x, y, 0x9d - (percent * 13 / 100));
101
    //write_ndigit_number_u(x, y-1, percent * 13 / 100, 100, 0);
101
    //write_ndigit_number_u(x, y-1, percent * 13 / 100, 100, 0);
102
}
102
}
103
 
103
 
104
 
104
 
105
 
105
 
106
/* ##########################################################################
106
/* ##########################################################################
107
 * draw logo
107
 * draw logo
108
 * ##########################################################################*/
108
 * ##########################################################################*/
109
 
109
 
110
/**
110
/**
111
 * draw the logo at <x>/<y>
111
 * draw the logo at <x>/<y>
112
 */
112
 */
113
void draw_logo(uint8_t x, uint8_t y) {
113
void draw_logo(uint8_t x, uint8_t y) {
114
    uint8_t chr = 0x50;
114
    uint8_t chr = 0x50;
115
 
115
 
116
    for (uint8_t yy = y; yy < y + 2; yy++) {
116
    for (uint8_t yy = y; yy < y + 2; yy++) {
117
        for (uint8_t xx = x; xx < x + 8; xx++) {
117
        for (uint8_t xx = x; xx < x + 8; xx++) {
118
            write_char_xy(xx, yy, chr++);
118
            write_char_xy(xx, yy, chr++);
119
        }
119
        }
120
    }
120
    }
121
}
121
}
122
 
122
 
123
/* ##########################################################################
123
/* ##########################################################################
124
 * variometer
124
 * variometer
125
 * ##########################################################################*/
125
 * ##########################################################################*/
126
 
126
 
127
/**
127
/**
128
 * draw variometer arrows at <x>/<y> according to <variometer>
128
 * draw variometer arrows at <x>/<y> according to <variometer>
129
 */
129
 */
130
void draw_variometer(uint8_t x, uint8_t y, int16_t variometer) {
130
void draw_variometer(uint8_t x, uint8_t y, int16_t variometer) {
131
    uint8_t chr = 0xbb;
131
    uint8_t chr = 0xbb;
132
    if (variometer > 0) { // gain height
132
    if (variometer > 0) { // gain height
133
        chr = 0x70 + (variometer / 5);
133
        chr = 0x70 + (variometer / 5);
134
        if (chr > 0x73) chr = 0x73;
134
        if (chr > 0x73) chr = 0x73;
135
    } else { // sink
135
    } else { // sink
136
        chr = 0x77 - (variometer / -5);
136
        chr = 0x77 - (variometer / -5);
137
        if (chr < 0x74) chr = 0x74;
137
        if (chr < 0x74) chr = 0x74;
138
    }
138
    }
139
    write_char_xy(x, y, chr);
139
    write_char_xy(x, y, chr);
140
}
140
}
141
 
141
 
142
 
142
 
143
// big vario array 
143
// big vario array 
144
const char vario_pnt[15][5] PROGMEM = {
144
const char vario_pnt[15][5] PROGMEM = {
145
        {0x00, 0x00, 0xc2, 0xff, 0xff},
145
        {0x00, 0x00, 0xc2, 0xff, 0xff},
146
        {0x00, 0x00, 0xc2, 0xff, 0xc0},
146
        {0x00, 0x00, 0xc2, 0xff, 0xc0},
147
        {0x00, 0x00, 0xc2, 0xff, 0xc1},
147
        {0x00, 0x00, 0xc2, 0xff, 0xc1},
148
        {0x00, 0x00, 0xc2, 0xff, 0x00},
148
        {0x00, 0x00, 0xc2, 0xff, 0x00},
149
        {0x00, 0x00, 0xc2, 0xc0, 0x00},
149
        {0x00, 0x00, 0xc2, 0xc0, 0x00},
150
        {0x00, 0x00, 0xc2, 0xc1, 0x00},
150
        {0x00, 0x00, 0xc2, 0xc1, 0x00},
151
        {0x00, 0x00, 0xc2, 0x00, 0x00},
151
        {0x00, 0x00, 0xc2, 0x00, 0x00},
152
        {0x00, 0x00, 0xbb, 0x00, 0x00},
152
        {0x00, 0x00, 0xbb, 0x00, 0x00},
153
        {0x00, 0x00, 0xc3, 0x00, 0x00},
153
        {0x00, 0x00, 0xc3, 0x00, 0x00},
154
        {0x00, 0xc4, 0xc3, 0x00, 0x00},
154
        {0x00, 0xc4, 0xc3, 0x00, 0x00},
155
        {0x00, 0xc5, 0xc3, 0x00, 0x00},
155
        {0x00, 0xc5, 0xc3, 0x00, 0x00},
156
        {0x00, 0xff, 0xc3, 0x00, 0x00},
156
        {0x00, 0xff, 0xc3, 0x00, 0x00},
157
        {0xc4, 0xff, 0xc3, 0x00, 0x00},
157
        {0xc4, 0xff, 0xc3, 0x00, 0x00},
158
        {0xc5, 0xff, 0xc3, 0x00, 0x00},
158
        {0xc5, 0xff, 0xc3, 0x00, 0x00},
159
        {0xff, 0xff, 0xc3, 0x00, 0x00}
159
        {0xff, 0xff, 0xc3, 0x00, 0x00}
160
};
160
};
161
 
161
 
162
/**
162
/**
163
 * draw a bigger vario with middle at <x>/<y> acording to <variometer>
163
 * draw a bigger vario with middle at <x>/<y> acording to <variometer>
164
 */
164
 */
165
void draw_big_variometer(uint8_t x, uint8_t y, int16_t variometer) {
165
void draw_big_variometer(uint8_t x, uint8_t y, int16_t variometer) {
166
    int16_t index = 7 + variometer;
166
    int16_t index = 7 + variometer;
167
    if (index > 14) index = 14;
167
    if (index > 14) index = 14;
168
    else if (index < 0) index = 0;
168
    else if (index < 0) index = 0;
169
 
169
 
170
    write_string_pgm_down(x, y - 2, vario_pnt[index], 5);
170
    write_string_pgm_down(x, y - 2, vario_pnt[index], 5);
171
}
171
}
172
 
172
 
173
 
173
 
174
/* ##########################################################################
174
/* ##########################################################################
175
 * NEW artificial horizon     By AGRESSiVA --=-- COPTERTRONiC
175
 * NEW artificial horizon     By AGRESSiVA --=-- COPTERTRONiC
176
 * ##########################################################################*/
176
 * ##########################################################################*/
177
// draw routine
177
// draw routine
178
 
178
 
179
int draw_noodles(int8_t pos_x, int8_t pos_y, int8_t num, int8_t old_num) {
179
int draw_noodles(int8_t pos_x, int8_t pos_y, int8_t num, int8_t old_num) {
180
    const char noodle[5] = {0x78, 0x79, 0x7A, 0x7B, 0x7C};
180
    const char noodle[5] = {0x78, 0x79, 0x7A, 0x7B, 0x7C};
181
    int8_t line, car;
181
    int8_t line, car;
182
 
182
 
183
    line = num / 5;
183
    line = num / 5;
184
    car = num - (line * 5);
184
    car = num - (line * 5);
185
    if (num != old_num) {
185
    if (num != old_num) {
186
        write_char_xy(15 - pos_x, pos_y + (old_num), 0);
186
        write_char_xy(15 - pos_x, pos_y + (old_num), 0);
187
    }
187
    }
188
 
188
 
189
    if (num < 0) {
189
    if (num < 0) {
190
        car = -1 * car;
190
        car = -1 * car;
191
        car = 4 - car;
191
        car = 4 - car;
192
        line--;
192
        line--;
193
        num = num - 5;
193
        num = num - 5;
194
    }
194
    }
195
    write_char_xy(15 - pos_x, pos_y + line, noodle[car]);
195
    write_char_xy(15 - pos_x, pos_y + line, noodle[car]);
196
 
196
 
197
    return line;
197
    return line;
198
}
198
}
199
 
199
 
200
/**
200
/**
201
 * calculate the rails of artificial horizon
201
 * calculate the rails of artificial horizon
202
 * receive <nick> and <roll> values
202
 * receive <nick> and <roll> values
203
 */
203
 */
204
void draw_agressiva_artificial_horizon(uint8_t firstline, uint8_t lastline, int16_t nick, int16_t roll) {
204
void draw_agressiva_artificial_horizon(uint8_t firstline, uint8_t lastline, int16_t nick, int16_t roll) {
205
    static int8_t old_ticy = 1, old_ticx = 0;
205
    static int8_t old_ticy = 1, old_ticx = 0;
206
    static int8_t old1 = 0, old2 = 0, old3 = 0, old4, old5 = 0, old6 = 0, old7 = 0, old8 = 0;
206
    static int8_t old1 = 0, old2 = 0, old3 = 0, old4, old5 = 0, old6 = 0, old7 = 0, old8 = 0;
207
    int8_t ticy = 0, ticx = 0;
207
    int8_t ticy = 0, ticx = 0;
208
    uint8_t center_x = 15;
208
    uint8_t center_x = 15;
209
    uint8_t center_y = lastline - firstline;
209
    uint8_t center_y = lastline - firstline;
210
    center_y = 7;
210
    center_y = 7;
211
 
211
 
212
#ifndef INDICATORARSLEVEL
212
#ifndef INDICATORARSLEVEL
213
        // original indicator bars
213
        // original indicator bars
214
    write_char_xy(center_x - 7, center_y, 226); // left bar
214
    write_char_xy(center_x - 7, center_y, 226); // left bar
215
    write_char_xy(center_x + 6, center_y, 226); // right bar
215
    write_char_xy(center_x + 6, center_y, 226); // right bar
216
#else
216
#else
217
        // indicator bars on same level as horizon bars
217
        // indicator bars on same level as horizon bars
218
    write_char_xy(center_x - 7, center_y, 0x78); // left bar
218
    write_char_xy(center_x - 7, center_y, 0x78); // left bar
219
    write_char_xy(center_x + 6, center_y, 0x78); // right bar
219
    write_char_xy(center_x + 6, center_y, 0x78); // right bar
220
#endif
220
#endif
221
 
221
 
222
 
222
 
223
#if FCONLY
223
#if FCONLY
224
    ticy = -1 * (roll / 10); // rescale roll from FC debug data
224
    ticy = -1 * (roll / 10); // rescale roll from FC debug data
225
    ticx = -1 * (nick * 10); // rescale nick from FC debug data
225
    ticx = -1 * (nick * 10); // rescale nick from FC debug data
226
#else
226
#else
227
    ticy = -1 * (roll / 2);
227
    ticy = -1 * (roll / 2);
228
    ticx = -1 * (nick / 1);
228
    ticx = -1 * (nick / 1);
229
#endif
229
#endif
230
 
230
 
231
    if (ticy >= 30) ticy = 30; // limit y
231
    if (ticy >= 30) ticy = 30; // limit y
232
    if (ticx >= 30) ticx = 30; // limit x
232
    if (ticx >= 30) ticx = 30; // limit x
233
 
233
 
234
    //write_ndigit_number_u (0 , 5 , ticy ,3, 1);
234
    //write_ndigit_number_u (0 , 5 , ticy ,3, 1);
235
    //write_ndigit_number_u (0 , 6 , ticx ,3, 1);
235
    //write_ndigit_number_u (0 , 6 , ticx ,3, 1);
236
 
236
 
237
    //if ((ticy != old_ticy) || (ticx != old_ticx)) {
237
    //if ((ticy != old_ticy) || (ticx != old_ticx)) {
238
    old1 = draw_noodles(4, 3, (ticy / 2) + 20 + ticx, old1);
238
    old1 = draw_noodles(4, 3, (ticy / 2) + 20 + ticx, old1);
239
    old2 = draw_noodles(3, 3, (ticy / 3) + 20 + ticx, old2);
239
    old2 = draw_noodles(3, 3, (ticy / 3) + 20 + ticx, old2);
240
    old3 = draw_noodles(2, 3, (ticy / 6) + 20 + ticx, old3);
240
    old3 = draw_noodles(2, 3, (ticy / 6) + 20 + ticx, old3);
241
    old4 = draw_noodles(1, 3, (ticy / 14) + 20 + ticx, old4);
241
    old4 = draw_noodles(1, 3, (ticy / 14) + 20 + ticx, old4);
242
    old5 = draw_noodles(-3, 3, -(ticy / 2) + 20 + ticx, old5);
242
    old5 = draw_noodles(-3, 3, -(ticy / 2) + 20 + ticx, old5);
243
    old6 = draw_noodles(-2, 3, -(ticy / 3) + 20 + ticx, old6);
243
    old6 = draw_noodles(-2, 3, -(ticy / 3) + 20 + ticx, old6);
244
    old7 = draw_noodles(-1, 3, -(ticy / 6) + 20 + ticx, old7);
244
    old7 = draw_noodles(-1, 3, -(ticy / 6) + 20 + ticx, old7);
245
    old8 = draw_noodles(0, 3, -(ticy / 14) + 20 + ticx, old8);
245
    old8 = draw_noodles(0, 3, -(ticy / 14) + 20 + ticx, old8);
246
    //}
246
    //}
247
    // update old vars
247
    // update old vars
248
    old_ticy = ticy;
248
    old_ticy = ticy;
249
    old_ticx = ticx;
249
    old_ticx = ticx;
250
}
250
}
251
 
251
 
252
 
252
 
253
/* ##########################################################################
253
/* ##########################################################################
254
 * OLD artificial horizon
254
 * OLD artificial horizon
255
 * ##########################################################################*/
255
 * ##########################################################################*/
256
 
256
 
257
// remember last time displayed values
257
// remember last time displayed values
258
int8_t old_af_x = -1, old_af_y = -1;
258
int8_t old_af_x = -1, old_af_y = -1;
259
 
259
 
260
/**
260
/**
261
 * draw roll und nick indicators (could be enhanced to full artificial horizon)
261
 * draw roll und nick indicators (could be enhanced to full artificial horizon)
262
 * from line <firstline> to <listlines> for given <nick> and <roll> values
262
 * from line <firstline> to <listlines> for given <nick> and <roll> values
263
 */
263
 */
264
void draw_artificial_horizon(uint8_t firstline, uint8_t lastline, int16_t nick, int16_t roll) {
264
void draw_artificial_horizon(uint8_t firstline, uint8_t lastline, int16_t nick, int16_t roll) {
265
    const char noodle[5] = {225, 225, 226, 227, 227};
265
    const char noodle[5] = {225, 225, 226, 227, 227};
266
    uint8_t center_x = 15;
266
    uint8_t center_x = 15;
267
    uint8_t center_y = lastline - firstline;
267
    uint8_t center_y = lastline - firstline;
268
    center_y = 7;
268
    center_y = 7;
269
    write_char_xy(center_x, center_y, 228);
269
    write_char_xy(center_x, center_y, 228);
270
    uint8_t cpos, nicky, rollx;
270
    uint8_t cpos, nicky, rollx;
271
 
271
 
272
    // which line
272
    // which line
273
    int8_t ypos = nick / 20;
273
    int8_t ypos = nick / 20;
274
    // which character from the array?
274
    // which character from the array?
275
    if (nick < 0) {
275
    if (nick < 0) {
276
        cpos = -1 * ((nick - (ypos * 20)) / 4);
276
        cpos = -1 * ((nick - (ypos * 20)) / 4);
277
        ypos--;
277
        ypos--;
278
    } else cpos = 4 - ((nick - (ypos * 20)) / 4);
278
    } else cpos = 4 - ((nick - (ypos * 20)) / 4);
279
    if (cpos > 4) cpos = 4;
279
    if (cpos > 4) cpos = 4;
280
 
280
 
281
    nicky = center_y - ypos;
281
    nicky = center_y - ypos;
282
    if (nicky > lastline) nicky = lastline;
282
    if (nicky > lastline) nicky = lastline;
283
    else if (nicky < firstline) nicky = firstline;
283
    else if (nicky < firstline) nicky = firstline;
284
 
284
 
285
    // ensure roll-borders
285
    // ensure roll-borders
286
    rollx = (roll / 8) + 15;
286
    rollx = (roll / 8) + 15;
287
    if (rollx < 2) rollx = 2;
287
    if (rollx < 2) rollx = 2;
288
    else if (rollx > 28) rollx = 28;
288
    else if (rollx > 28) rollx = 28;
289
 
289
 
290
 
290
 
291
    // clear roll
291
    // clear roll
292
    if (old_af_x != rollx && old_af_x >= 0) {
292
    if (old_af_x != rollx && old_af_x >= 0) {
293
        write_char_xy(old_af_x, lastline, 0);
293
        write_char_xy(old_af_x, lastline, 0);
294
    }
294
    }
295
 
295
 
296
    // clear nick
296
    // clear nick
297
    if (old_af_y != nicky && old_af_y >= 0) {
297
    if (old_af_y != nicky && old_af_y >= 0) {
298
        write_char_xy(center_x - 1, old_af_y, 0);
298
        write_char_xy(center_x - 1, old_af_y, 0);
299
        write_char_xy(center_x + 1, old_af_y, 0);
299
        write_char_xy(center_x + 1, old_af_y, 0);
300
    }
300
    }
301
 
301
 
302
 
302
 
303
    // draw nick
303
    // draw nick
304
    write_char_xy(center_x - 1, nicky, noodle[cpos]);
304
    write_char_xy(center_x - 1, nicky, noodle[cpos]);
305
    write_char_xy(center_x + 1, nicky, noodle[cpos]);
305
    write_char_xy(center_x + 1, nicky, noodle[cpos]);
306
 
306
 
307
    // draw roll
307
    // draw roll
308
    write_char_xy(rollx, lastline, 229);
308
    write_char_xy(rollx, lastline, 229);
309
 
309
 
310
    // update old vars
310
    // update old vars
311
    old_af_x = rollx;
311
    old_af_x = rollx;
312
    old_af_y = nicky;
312
    old_af_y = nicky;
313
}
313
}
314
 
314
 
315
/**
315
/**
316
 * draw scope of a second camera
316
 * draw scope of a second camera
317
 */
317
 */
318
void draw_scope() {
318
void draw_scope() {
319
    /*
319
    /*
320
        write_char_xy(scope[0], scope[1], 0xEC);
320
        write_char_xy(scope[0], scope[1], 0xEC);
321
        write_char_xy(scope[2], scope[3], 0xED);
321
        write_char_xy(scope[2], scope[3], 0xED);
322
        write_char_xy(scope[4], scope[5], 0xEE);
322
        write_char_xy(scope[4], scope[5], 0xEE);
323
        write_char_xy(scope[6], scope[7], 0xEF);
323
        write_char_xy(scope[6], scope[7], 0xEF);
324
     */
324
     */
325
    // save 20 byte :)
325
    // save 20 byte :)
326
    for (int i = 0; i < 4; i++) {
326
    for (int i = 0; i < 4; i++) {
327
        write_char_xy(
327
        write_char_xy(
328
            scope[i * 3],
328
            scope[i * 3],
329
            scope[(i * 3) + 1],
329
            scope[(i * 3) + 1],
330
            0xEC + i + (scope[(i * 3) + 2] * 4));
330
            0xEC + i + (scope[(i * 3) + 2] * 4));
331
    }
331
    }
332
}
332
}
333
 
333
 
334
/**
334
/**
335
 * draw stats
335
 * draw stats
336
 */
336
 */
337
void draw_stats() {
337
void draw_stats() {
338
#if FCONLY
338
#if FCONLY
339
#else
339
#else
340
    uint8_t line = 3;
340
    uint8_t line = 3;
341
    write_ascii_string_pgm(1, line,   PSTR("max Alt :")); // max Altitude
341
    write_ascii_string_pgm(1, line,   PSTR("max Alt :")); // max Altitude
342
    write_ascii_string_pgm(1, ++line, PSTR("max Spd :")); // max Speed
342
    write_ascii_string_pgm(1, ++line, PSTR("max Spd :")); // max Speed
343
    write_ascii_string_pgm(1, ++line, PSTR("max Dist:")); // max Distance
343
    write_ascii_string_pgm(1, ++line, PSTR("max Dist:")); // max Distance
344
 
344
 
345
     draw_logo(19, 4);
345
     draw_logo(19, 4);
346
 
346
 
347
    if (COSD_FLAGS_CONFIG & COSD_FLAG_FEET) {
347
    if (COSD_FLAGS_CONFIG & COSD_FLAG_FEET) {
348
        write_ndigit_number_s(13, line - 2, max_Altimeter * 32 / 10, 4, 0);
348
        write_ndigit_number_s(13, line - 2, max_Altimeter * 32 / 10, 4, 0);
349
        write_char_xy(17, line - 2, 0x7E); // small feet ft
349
        write_char_xy(17, line - 2, 0x7E); // small feet ft
350
        write_ndigit_number_u(14, line - 1, (uint16_t)(((uint32_t)max_GroundSpeed * (uint32_t)279) / (uint32_t)12500), 3, 0);
350
        write_ndigit_number_u(14, line - 1, (uint16_t)(((uint32_t)max_GroundSpeed * (uint32_t)279) / (uint32_t)12500), 3, 0);
351
        write_char_xy(17, line - 1, 0x7D); // mp/h
351
        write_char_xy(17, line - 1, 0x7D); // mp/h
352
        write_ndigit_number_u(13, line - 0, max_Distance / 10 * 32 / 10, 4, 0);
352
        write_ndigit_number_u(13, line - 0, max_Distance / 10 * 32 / 10, 4, 0);
353
        write_char_xy(17, line - 0, 0x7E); // small feet ft
353
        write_char_xy(17, line - 0, 0x7E); // small feet ft
354
    } else {
354
    } else {
355
        write_ndigit_number_s(13, line - 2, max_Altimeter, 4, 0);
355
        write_ndigit_number_s(13, line - 2, max_Altimeter, 4, 0);
356
        write_char_xy(17, line - 2, 204); // small meters m
356
        write_char_xy(17, line - 2, 204); // small meters m
357
        write_ndigit_number_u(14, line - 1, (uint16_t)(((uint32_t)max_GroundSpeed * (uint32_t)9) / (uint32_t)250), 3, 0);
357
        write_ndigit_number_u(14, line - 1, (uint16_t)(((uint32_t)max_GroundSpeed * (uint32_t)9) / (uint32_t)250), 3, 0);
358
        write_char_xy(17, line - 1, 203); // km/h
358
        write_char_xy(17, line - 1, 203); // km/h
359
        write_ndigit_number_u(13, line - 0, max_Distance / 10, 4, 0);
359
        write_ndigit_number_u(13, line - 0, max_Distance / 10, 4, 0);
360
        write_char_xy(17, line - 0, 204); // small meters m
360
        write_char_xy(17, line - 0, 204); // small meters m
361
    }
361
    }
362
 
362
 
363
    write_ascii_string_pgm(1, ++line,     PSTR("min Volt:")); // min voltage
363
    write_ascii_string_pgm(1, ++line,     PSTR("min Volt:")); // min voltage
364
    write_ndigit_number_u_10th(13, line, min_UBat, 3, 0);
364
    write_ndigit_number_u_10th(13, line, min_UBat, 3, 0);
365
    write_char_xy(17, line, 0x9E); // small V
365
    write_char_xy(17, line, 0x9E); // small V
366
    if ((COSD_FLAGS_RUNTIME & COSD_FLAG_STROMREC) || (COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT)) {
366
    if ((COSD_FLAGS_RUNTIME & COSD_FLAG_STROMREC) || (COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT)) {
367
        write_ascii_string_pgm(1, ++line, PSTR("max curr:")); // ampere
367
        write_ascii_string_pgm(1, ++line, PSTR("max curr:")); // ampere
368
        write_ndigit_number_u_10th(13, line, max_ampere / 10, 3, 0);
368
        write_ndigit_number_u_10th(13, line, max_ampere / 10, 3, 0);
369
        write_char_xy(17, line, 0x9F); // small A
369
        write_char_xy(17, line, 0x9F); // small A
370
 
370
 
371
        // wasted mampere in this flight (will count up after landing)
371
        // wasted mampere in this flight (will count up after landing)
372
        if ((COSD_FLAGS_RUNTIME & COSD_FLAG_STROMREC) && !(COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT)) {
372
        if ((COSD_FLAGS_RUNTIME & COSD_FLAG_STROMREC) && !(COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT)) {
373
            write_ndigit_number_u(18, line, (ampere_wasted / 10) - wasted_ampere_offset, 5, 0);
373
            write_ndigit_number_u(18, line, (ampere_wasted / 10) - wasted_ampere_offset, 5, 0);
374
        } else if (COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT) {
374
        } else if (COSD_FLAGS_MODES & COSD_FLAG_FCCURRENT) {
375
 
375
 
376
            write_ndigit_number_u(18, line, naviData.UsedCapacity - wasted_ampere_offset, 5, 0);
376
            write_ndigit_number_u(18, line, naviData.UsedCapacity - wasted_ampere_offset, 5, 0);
377
        }
377
        }
378
 
378
 
379
        write_char_xy(23, line, 0xB5); // mah
379
        write_char_xy(23, line, 0xB5); // mah
380
    }
380
    }
381
    write_ascii_string_pgm(1, ++line, PSTR("max Time:")); // max time
381
    write_ascii_string_pgm(1, ++line, PSTR("max Time:")); // max time
382
    write_time(11, line, max_FlyingTime);
382
    write_time(11, line, max_FlyingTime);
383
    write_char_xy(17, line, 210); // fly clock
383
    write_char_xy(17, line, 210); // fly clock
384
    write_ascii_string_pgm(1, ++line, PSTR("long    :")); // longitude
384
    write_ascii_string_pgm(1, ++line, PSTR("long    :")); // longitude
385
    write_gps_pos(11, line, naviData.CurrentPosition.Longitude);
385
    write_gps_pos(11, line, naviData.CurrentPosition.Longitude);
386
    write_ascii_string_pgm(1, ++line, PSTR("lat     :")); // latitude
386
    write_ascii_string_pgm(1, ++line, PSTR("lat     :")); // latitude
387
    write_gps_pos(11, line, naviData.CurrentPosition.Latitude);
387
    write_gps_pos(11, line, naviData.CurrentPosition.Latitude);
388
#endif
388
#endif
389
}
389
}
390
 
390
 
391
#endif
391
#endif
392
 
392