mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
GCS-Show first 4 bytes of uavohash instead of last 4.
This commit is contained in:
parent
bc13c20bf3
commit
e43d3dd7db
@ -810,8 +810,8 @@ void UploaderGadgetWidget::versionMatchCheck()
|
|||||||
{
|
{
|
||||||
gcsUavoHashStr.append(QString::number(i,16).right(2));
|
gcsUavoHashStr.append(QString::number(i,16).right(2));
|
||||||
}
|
}
|
||||||
QString gcsVersion = gcsGitDate + " (" + gcsGitHash + "-"+ gcsUavoHashStr.right(8) + ")";
|
QString gcsVersion = gcsGitDate + " (" + gcsGitHash + "-"+ gcsUavoHashStr.left(8) + ")";
|
||||||
QString fwVersion = boardDescription.gitDate + " (" + boardDescription.gitHash + "-" + fwUavoHashStr.right(8) + ")";
|
QString fwVersion = boardDescription.gitDate + " (" + boardDescription.gitHash + "-" + fwUavoHashStr.left(8) + ")";
|
||||||
|
|
||||||
QString warning = QString(tr(
|
QString warning = QString(tr(
|
||||||
"GCS and firmware versions of the UAV objects set do not match which can cause configuration problems. "
|
"GCS and firmware versions of the UAV objects set do not match which can cause configuration problems. "
|
||||||
|
Loading…
Reference in New Issue
Block a user