Subversion Repositories Projects

Compare Revisions

Regard whitespace Rev 677 → Rev 676

/C-OSD/trunk/main.c
373,12 → 373,10
if (last_UBat == 255) {
// fix for min_UBat
min_UBat = debugData.Analog[9];
last_UBat = debugData.Analog[9];
init_cosd(last_UBat);
} else {
init_cosd(debugData.Analog[9]);
}
osd_fcmode();
}
}
#else
if (rxd_buffer[2] == 'O') { // NC OSD Data
Decode64();
388,12 → 386,10
if (last_UBat == 255) {
// fix for min_UBat
min_UBat = naviData.UBat;
last_UBat = naviData.UBat;
init_cosd(last_UBat);
} else {
init_cosd(naviData.UBat);
}
osd_ncmode();
}
}
#endif
rxd_buffer_locked = 0;
}