Skip to content

Commit 16e852d

Browse files
committed
libcameara: sensor: Fix the gain delay for IMX283
The IMX283 uses a gain delay of 1 instead of the current value of 2 as defined in the sensor properties. Fix it. Signed-off-by: Naushir Patuck <[email protected]>
1 parent 69ef441 commit 16e852d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcamera/sensor/camera_sensor_properties.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ const CameraSensorProperties *CameraSensorProperties::get(const std::string &sen
194194
.testPatternModes = {},
195195
.sensorDelays = {
196196
.exposureDelay = 2,
197-
.gainDelay = 2,
197+
.gainDelay = 1,
198198
.vblankDelay = 2,
199199
.hblankDelay = 2
200200
},

0 commit comments

Comments
 (0)