Skip to content

Commit

Permalink
Merge pull request #7833 from remibettan/android-fix-l500-dfu
Browse files Browse the repository at this point in the history
Java: add fw image file for l500
  • Loading branch information
ev-mp authored Nov 23, 2020
2 parents d0c6ca9 + e1735dd commit 8093769
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public enum StreamFormat {
INZI(25),
INVI(26),
W10(27),
Z16H(28);
Z16H(28),
FG(29);
private final int mValue;

private StreamFormat(int value) { mValue = value; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ private int getFwImageId(Device device){
switch (pl){
case D400: return R.raw.fw_d4xx;
case SR300: return R.raw.fw_sr3xx;
case L500: return R.raw.fw_l5xx;
}
}
throw new RuntimeException("FW update is not supported for the connected device");
Expand Down
Binary file not shown.

0 comments on commit 8093769

Please sign in to comment.