mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
Add Revolution to the list of board names the DFU knows about so that the open
firmware dialog opens in the correct location (useful for devs). Honestly the DFU should be rearranged so all the board ID information etc is in one location instead of spread throughout various functions and remapped to various other constants.
This commit is contained in:
parent
9a32e637e9
commit
5a67b8cc29
@ -93,6 +93,9 @@ QString deviceWidget::idToBoardName(int id)
|
|||||||
case 0x0211://INS
|
case 0x0211://INS
|
||||||
return QString("OpenPilot INS");
|
return QString("OpenPilot INS");
|
||||||
break;
|
break;
|
||||||
|
case 0x0911://Revolution
|
||||||
|
return QString("Revolution");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return QString("");
|
return QString("");
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user