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 76e91a69f78e4e4411fb3f342ae48a89ca16813c
Author: SPRESENSE <41312067+sprese...@users.noreply.github.com>
AuthorDate: Thu Dec 21 13:30:29 2023 +0900

    drivers/video/isx019: Fix maximum value of exposure time
    
    Modify maximum value of exposure time from 102000 to 2740
    according to hardware specification.
---
 drivers/video/isx019_range.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/isx019_range.h b/drivers/video/isx019_range.h
index 35365a148e..9489c1fc12 100644
--- a/drivers/video/isx019_range.h
+++ b/drivers/video/isx019_range.h
@@ -77,7 +77,7 @@
 #define STEP_AE       (1)
 
 #define MIN_EXPOSURETIME        (1)
-#define MAX_EXPOSURETIME        (102000)
+#define MAX_EXPOSURETIME        (2740)
 #define STEP_EXPOSURETIME       (1)
 
 #define MIN_WBMODE        (0)

Reply via email to