Schachti
(Klaus Müller)
December 19, 2020, 9:37am
1
Hi there,
when will there finally be a summary?
A summary after the disarms would be nice, but a switch to display the summary would be enough.
the functions of the old minim osd were great.
only the wiring was horrible
xfacta
(Shawn)
December 19, 2020, 8:41pm
2
If you use the Nightghost firmware on generic OSD hardware I think you can still get that summary.
Or are you talking about the built-in OSD support in later versions of Ardupilot?
Many people would consider a summary onscreen to be of limited value when you’ve got extensive logging plus the possibility of a groundstation connected over telemetry. Or even an RC transmitter with telemetry shown onscreen.
Schachti
(Klaus Müller)
December 19, 2020, 8:54pm
3
I mean of course the new osd on all boards with integrated osd
MrNams
(MrNams)
December 14, 2021, 12:46pm
4
Hi Shawn,
Any update on showing Flight Summary on Disarm/landing?
Schachti
(Klaus Müller)
December 14, 2021, 3:29pm
5
that would be great
and another single cell voltage display
It exists. I’ve used it. I don’t have a link to the relevant
information…
Probably OSD_STATS_EN
ArduPilot:master
← yaapu:pr/msp_osd_multiscreen
opened 11:06PM - 19 Aug 21 UTC
This adds multiple screens and stats to the DJI MSP Backend.
Support for multip… le screens is similar to regular OSD, one has to enable the additional screens with OSDn_ENABLE and switch between them with one of the supported methods defined by OSD_SW_METHOD.
Stats needed a "hack", when a user switches to a screen that has stats enabled with OSDn_STATS_EN = 1, the telemetry for speed, altitude, voltage, current and distance will report min/max values rather than instant values.
The home distance OSD item will alternate every 2 seconds between max home distance and total traveled distance
The message text OSD item will report "STATS hh:mm" where hh:mm is the flight time and just like usual incoming status text messages will be shown with rolling text.
![image](https://user-images.githubusercontent.com/30294218/130155340-99871704-cfcc-4d67-9b8f-d5479d644f43.png)
stats panels have to be individually enabled
- OSDn_STATS_EN 1.000000, required to enable the new stats feature
- OSDn_MESSAGE_EN 1.000000, required to display flight time in stats display mode
- OSDn_ALTITUDE_EN 1.000000, shows max altitude
- OSDn_BAT_VOLT_EN 1.000000, shows min voltage
- OSDn_CURRENT_EN 1.000000, shows max current
- OSDn_GSPEED_EN 1.000000, shows max ground speed
- OSDn_HOMEDIST_EN 1.000000, alternates max distance from home and total traveled distance every 2 seconds
- OSDn_RSSI_EN 1.000000, shows min rssi
_Note: to get airspeed max rather than gspeed max just like usual one have to set OSDn_ASPEED_EN =1_
A possible layout:
OSD2_ENABLE 1.000000
OSD2_STATS_EN 1.000000
OSD2_MESSAGE_EN 1.000000
OSD2_MESSAGE_X 14.000000
OSD2_MESSAGE_Y 3.000000
OSD2_ARMING_EN 1.000000
OSD2_ARMING_X 12.000000
OSD2_ARMING_Y 0.000000
OSD2_ALTITUDE_EN 1.000000
OSD2_ALTITUDE_X 11.000000
OSD2_ALTITUDE_Y 6.000000
OSD2_BATUSED_EN 1.000000
OSD2_BATUSED_X 12.000000
OSD2_BATUSED_Y 11.000000
OSD2_BAT_VOLT_EN 1.000000
OSD2_BAT_VOLT_X 12.000000
OSD2_BAT_VOLT_Y 8.000000
OSD2_CLK_EN 1.000000
OSD2_CLK_X 12.000000
OSD2_CLK_Y 0.000000
OSD2_CURRENT_EN 1.000000
OSD2_CURRENT_X 11.000000
OSD2_CURRENT_Y 9.000000
OSD2_GPSLAT_EN 1.000000
OSD2_GPSLAT_X 9.000000
OSD2_GPSLAT_Y 13.000000
OSD2_GPSLONG_EN 1.000000
OSD2_GPSLONG_X 9.000000
OSD2_GPSLONG_Y 14.000000
OSD2_GSPEED_EN 1.000000
OSD2_GSPEED_X 13.000000
OSD2_GSPEED_Y 5.000000
OSD2_HOMEDIST_EN 1.000000
OSD2_HOMEDIST_X 13.000000
OSD2_HOMEDIST_Y 7.000000
OSD2_RSSI_EN 1.000000
OSD2_RSSI_X 13.000000
OSD2_RSSI_Y 10.000000
yielding
![image](https://user-images.githubusercontent.com/30294218/130485675-b53c5d65-1888-458f-95cc-0ac06e4c2715.png)
MrNams
(MrNams)
December 16, 2021, 7:59pm
7
peterbarker:
OSD_STATS_EN
There is no such parameter.
dkemxr
(Dave)
December 17, 2021, 4:13am
8
Sure there is on a screen you add. Didn’t read the link?