Julien-laville / arducam-osd

Automatically exported from code.google.com/p/arducam-osd
0 stars 0 forks source link

Battery voltage bug #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In MAVLink.pde (line 62) change:

osd_vbat = (mavlink_msg_sys_status_get_vbat(&msg) / 1000); // It's loosing the 
decivolts (tenths of a volt)

to:

osd_vbat = mavlink_msg_sys_status_get_vbat(&msg) / 1000.;

Original issue reported on code.google.com by modc...@gmail.com on 16 Jan 2012 at 10:54

GoogleCodeExporter commented 9 years ago
I'll handle this one.

Original comment by sbeni...@gmail.com on 17 Jan 2012 at 1:05

GoogleCodeExporter commented 9 years ago
The change for this is done now.

Original comment by sbeni...@gmail.com on 17 Jan 2012 at 1:50