Skip to content

Commit ad5a016

Browse files
committed
remove SR300 from wrappers/
1 parent dd41e1c commit ad5a016

File tree

6 files changed

+2
-55
lines changed

6 files changed

+2
-55
lines changed

wrappers/android/tools/camera/build.gradle

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ task downloadFirmware() {
4646
println("downloading L51x fw: " + l51xFwVersion)
4747
new URL('https://librealsense.intel.com/Releases/L5xx/FW/L51X_FW_Image-' + l51xFwVersion + '.bin').withInputStream{ i -> l51xFile.withOutputStream{ it << i }}
4848
}
49-
50-
def sr3xxFwVersion = getFwVersion('SR3XX_RECOMMENDED_FIRMWARE_VERSION')
51-
def sr3xxFile = new File("$projectDir/src/main/res/raw/fw_sr3xx.bin")
52-
if (!sr3xxFile.exists()) {
53-
println("downloading SR3xx fw: " + sr3xxFwVersion)
54-
new URL('https://librealsense.intel.com/Releases/SR300/FW/SR3XX_FW_Image-' + sr3xxFwVersion + '.bin').withInputStream{ i -> sr3xxFile.withOutputStream{ it << i }}
55-
}
5649
}
5750

5851
dependencies {

wrappers/android/tools/camera/src/main/java/com/intel/realsense/camera/FirmwareUpdateProgressDialog.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ private int getFwImageId(Device device){
6161
ProductLine pl = ProductLine.valueOf(device.getInfo(CameraInfo.PRODUCT_LINE));
6262
switch (pl){
6363
case D400: return R.raw.fw_d4xx;
64-
case SR300: return R.raw.fw_sr3xx;
6564
case L500: return R.raw.fw_l51x;
6665
}
6766
}

wrappers/csharp/Intel.RealSense/Types/Enums/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ target_sources(${LRS_DOTNET_TARGET}
1212
"${CMAKE_CURRENT_LIST_DIR}/PlaybackStatus.cs"
1313
"${CMAKE_CURRENT_LIST_DIR}/RecordingMode.cs"
1414
"${CMAKE_CURRENT_LIST_DIR}/Rs400VisualPreset.cs"
15-
"${CMAKE_CURRENT_LIST_DIR}/Sr300VisualPreset.cs"
1615
"${CMAKE_CURRENT_LIST_DIR}/L500VisualPreset.cs"
1716
"${CMAKE_CURRENT_LIST_DIR}/Stream.cs"
1817
"${CMAKE_CURRENT_LIST_DIR}/TimestampDomain.cs"

wrappers/csharp/Intel.RealSense/Types/Enums/Sr300VisualPreset.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

wrappers/open3d/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ options supported by Open3D:
169169
- **fps**: Common frame rate for both depth and color streams. Leave 0
170170
to let RealSense pick a supported frame rate.
171171
- **visual_preset**: Controls depth computation on the device.
172-
Supported values are specific to product line (SR300, RS400, L500).
172+
Supported values are specific to product line (D400, L500).
173173
Leave empty to pick the default.
174174

175175
Here is an example `json` configuration file to capture 30fps, 540p

wrappers/opencv/latency-tool/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ You can add more than one stream to check how multiple streams are affecting eac
5050

5151

5252
This method will not work for the depth stream.
53-
**D400** will produce readable results for both `RS2_STREAM_COLOR` and `RS2_STREAM_INFRARED`. **SR300** infrared stream doesn't seem to capture the content of a screen.
53+
**D400** will produce readable results for both `RS2_STREAM_COLOR` and `RS2_STREAM_INFRARED`.
5454

5555

5656
In addition, if you want to run this demo with a regular web-cam, use the following code instead of using the `pipeline` object:

0 commit comments

Comments
 (0)