This is an automated email from the ASF dual-hosted git repository.

jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 2b04210b16df8bb54cb715537efb8edd79ed171d
Author: SPRESENSE <41312067+sprese...@users.noreply.github.com>
AuthorDate: Mon Jan 22 19:03:20 2024 +0900

    drivers/video/isx019: Fix default ISO sensitivity
    
    ISX019's ISO sensitivity is in auto adjustment mode by default.
    Then, default ISO sensitivity value should be auto adjusted value.
---
 drivers/video/isx019.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/isx019.c b/drivers/video/isx019.c
index e767eee8ec..bd3b18397a 100644
--- a/drivers/video/isx019.c
+++ b/drivers/video/isx019.c
@@ -2020,7 +2020,7 @@ static int isx019_get_supported_value(FAR struct 
imgsensor_s *sensor,
         SET_DISCRETE(val->u.discrete,
                      NR_ISO,
                      g_isx019_iso,
-                     0);
+                     def->iso);
         break;
 
       case IMGSENSOR_ID_ISO_SENSITIVITY_AUTO:

Reply via email to