1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-29 14:52:12 +01:00

Make GCS aware of revo board number again

This commit is contained in:
James Cotton 2012-05-28 09:34:23 -05:00
parent 8a6073fbaf
commit 33e39713d1

View File

@ -30,6 +30,11 @@ public:
// for firmware compatibility and the filename path that would break // for firmware compatibility and the filename path that would break
return QString("CopterControl"); return QString("CopterControl");
break; break;
case 0x0901://Revolution
// It would be nice to say CC3D here but since currently we use string comparisons
// for firmware compatibility and the filename path that would break
return QString("Revolution");
break;
default: default:
return QString(""); return QString("");
break; break;