From 19c95a4f1b2c2cc2c5a6ca7d9d1ad6c14492fb9a Mon Sep 17 00:00:00 2001 From: Alessio Morale Date: Thu, 10 Jan 2013 01:43:33 +0100 Subject: [PATCH] OP-798 uavobjectutil/devicedescriptorstruct.h miss a case for 0x903-revomini target --- .../src/plugins/uavobjectutil/devicedescriptorstruct.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/src/plugins/uavobjectutil/devicedescriptorstruct.h b/ground/openpilotgcs/src/plugins/uavobjectutil/devicedescriptorstruct.h index 4d235933e..021e64b81 100644 --- a/ground/openpilotgcs/src/plugins/uavobjectutil/devicedescriptorstruct.h +++ b/ground/openpilotgcs/src/plugins/uavobjectutil/devicedescriptorstruct.h @@ -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;