File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ void startPanels(){
10
10
void panLogo (){
11
11
osd.setPanel (5 , 5 );
12
12
osd.openPanel ();
13
- osd.printf_P (PSTR (" MinimOSD-Extra 2.4|Plane r800 " ));
13
+ osd.printf_P (PSTR (" MinimOSD-Extra 2.4|Plane r805 " ));
14
14
osd.closePanel ();
15
15
}
16
16
@@ -289,6 +289,9 @@ void panRSSI(int first_col, int first_line){
289
289
}
290
290
if (rssiraw_on == 1 ) rssi = (int16_t )osd_rssi;
291
291
if (rssiraw_on == 9 ) rssi = chan8_raw;
292
+
293
+ if (rssi > 100.0 ) rssi = 100 ;
294
+
292
295
osd.printf (" %c%3i%c" , 0x09 , rssi, 0x25 );
293
296
osd.closePanel ();
294
297
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ void startPanels(){
10
10
void panLogo (){
11
11
osd.setPanel (5 , 5 );
12
12
osd.openPanel ();
13
- osd.printf_P (PSTR (" MinimOSD-Extra 2.4|Copter r800 " ));
13
+ osd.printf_P (PSTR (" MinimOSD-Extra 2.4|Copter r805 " ));
14
14
osd.closePanel ();
15
15
}
16
16
@@ -250,6 +250,9 @@ void panRSSI(int first_col, int first_line){
250
250
}
251
251
if (rssiraw_on == 1 ) rssi = (int16_t )osd_rssi;
252
252
if (rssiraw_on == 9 ) rssi = chan8_raw;
253
+
254
+ if (rssi > 100.0 ) rssi = 100 ;
255
+
253
256
osd.printf (" %c%3i%c" , 0x09 , rssi, 0x25 );
254
257
osd.closePanel ();
255
258
}
You can’t perform that action at this time.
0 commit comments