Part Number: TDA4VM
Hi TI Team,
We are currently working on an upcoming onsemi sensor with the TI TDA4VM platform and are facing an issue related to AE exposure control.
Our requirement is to operate the sensor using only two exposure times 10 and 20 ms with no intermediate values. But, one limitation we are encountering is that sensor gain control is fixed based on the sensor settings.
So for now our expoosure table looks like this
//exposure range 1 -- 10 msec integration time
p_ae_dynPrms->exposureTimeRange[count].min = 10000;
p_ae_dynPrms->exposureTimeRange[count].max = 10000;
p_ae_dynPrms->analogGainRange[count].min = 1024; //1024 => 1x
p_ae_dynPrms->analogGainRange[count].max = 2047; //2x
p_ae_dynPrms->digitalGainRange[count].min = 256;
p_ae_dynPrms->digitalGainRange[count].max = 256;
count++;
//exposure range 2 -- 20 msec integration time
p_ae_dynPrms->exposureTimeRange[count].min = 20000;
p_ae_dynPrms->exposureTimeRange[count].max = 20000;
p_ae_dynPrms->analogGainRange[count].min = 1024;
p_ae_dynPrms->analogGainRange[count].max = 1024;
p_ae_dynPrms->digitalGainRange[count].min = 256;
p_ae_dynPrms->digitalGainRange[count].max = 256;
count++;
In the first entry, we apply gain up to 2x to ensure a smooth transition between 10 ms and 20 ms. Since sensor-side gain control is not available, we want to confirm whether TDA4 ISP provides an option for digital gain. If so, how this can be utilized.
Thank you for your support.
Thanks