libcamera: 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 <naush@raspberrypi.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Acked-by: Paul Elder <paul.elder@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Naushir Patuck 2025-05-21 11:19:52 +01:00 committed by Kieran Bingham
parent eb9bb35d80
commit aca8b701ac

View file

@ -194,7 +194,7 @@ const CameraSensorProperties *CameraSensorProperties::get(const std::string &sen
.testPatternModes = {},
.sensorDelays = {
.exposureDelay = 2,
.gainDelay = 2,
.gainDelay = 1,
.vblankDelay = 2,
.hblankDelay = 2
},