Skip to content

Commit c9e9746

Browse files
javiercarrascocruzjic23
authored andcommitted
iio: light: veml6030: fix ALS sensor resolution
The driver still uses the sensor resolution provided in the datasheet until Rev. 1.6, 28-Apr-2022, which was updated with Rev 1.7, 28-Nov-2023. The original ambient light resolution has been updated from 0.0036 lx/ct to 0.0042 lx/ct, which is the value that can be found in the current device datasheet. Update the default resolution for IT = 100 ms and GAIN = 1/8 from the original 4608 mlux/cnt to the current value from the "Resolution and maximum detection range" table (Application Note 84367, page 5), 5376 mlux/cnt. Cc: <[email protected]> Fixes: 7b779f5 ("iio: light: add driver for veml6030 ambient light sensor") Signed-off-by: Javier Carrasco <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jonathan Cameron <[email protected]>
1 parent 50161b2 commit c9e9746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/light/veml6030.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ static int veml6030_hw_init(struct iio_dev *indio_dev)
779779

780780
/* Cache currently active measurement parameters */
781781
data->cur_gain = 3;
782-
data->cur_resolution = 4608;
782+
data->cur_resolution = 5376;
783783
data->cur_integration_time = 3;
784784

785785
return ret;

0 commit comments

Comments
 (0)