1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

OP-798 uavobjectutil/devicedescriptorstruct.h miss a case for 0x903-revomini target

This commit is contained in:
Alessio Morale 2013-01-10 01:43:33 +01:00
parent eaaad5edd1
commit 19c95a4f1b

View File

@ -33,10 +33,11 @@ public:
return QString("CopterControl");
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;
case 0x0903://Revomini
return QString("Revomini");
break;
default:
return QString("");
break;