Skip to content

Commit

Permalink
Merge pull request #8360 from remibettan/updating-android-l500-recomm…
Browse files Browse the repository at this point in the history
…ended-fw

[Android] bundling l500 recommended FW image
  • Loading branch information
ev-mp authored Feb 14, 2021
2 parents 3374a48 + 100c0de commit bc0910f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions wrappers/android/tools/camera/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ task downloadFirmware() {
println("downloading D4xx fw: " + d4xxFwVersion)
new URL('http://realsense-hw-public.s3-eu-west-1.amazonaws.com/Releases/RS4xx/FW/D4XX_FW_Image-' + d4xxFwVersion + '.bin').withInputStream{ i -> d4xxFile.withOutputStream{ it << i }}
}

def l5xxFwVersion = getFwVersion('L5XX_RECOMMENDED_FIRMWARE_VERSION')
def l5xxFile = new File("$projectDir/src/main/res/raw/fw_l5xx.bin")
if (!l5xxFile.exists()) {
println("downloading L5xx fw: " + l5xxFwVersion)
new URL('http://realsense-hw-public.s3-eu-west-1.amazonaws.com/Releases/L5xx/FW/L5XX_FW_Image-' + l5xxFwVersion + '.bin').withInputStream{ i -> l5xxFile.withOutputStream{ it << i }}
}

def sr3xxFwVersion = getFwVersion('SR3XX_RECOMMENDED_FIRMWARE_VERSION')
def sr3xxFile = new File("$projectDir/src/main/res/raw/fw_sr3xx.bin")
Expand Down
Binary file not shown.

0 comments on commit bc0910f

Please sign in to comment.