This is related to the post
I’ve one more question, how can I switch the analog input of the module? I’m trying to find this looking at the code example here without success. Thanks in advanced.
This is related to the post
I’ve one more question, how can I switch the analog input of the module? I’m trying to find this looking at the code example here without success. Thanks in advanced.
Dear @skabo
I quickly checked the demo code. Please look at the file sensor_yuv_ADV7280.c. In line 335 ff. there are the statements:
//Enable autodetection
data[0]=ADV7280_INPUT_CONTROL_AD_PAL_BG_NTSC_J_SECAM | ADV7280_INPUT_CONTROL_COMPOSITE_IN1;
if(I2CBurstWrite(I2C_ADDRESS, data, ADV7280_INPUT_CONTROL, 1) == FALSE) goto ERROR_EXIT;
data[0]=ADV7280_AUTODETECT_DEFAULT;
if(I2CBurstWrite(I2C_ADDRESS, data, ADV7280_AUTODETECT_ENABLE, 1) == FALSE) goto ERROR_EXIT;
I checked out the ADV7280 User Guide:
The input selection is described in Table 104. User Sub Map Register Descriptions.
I expect it should be sufficient to replace the constant ADV7280_INPUT_CONTROL_COMPOSITE_IN1
with the appropriate value, and disable autodetection.
Regards, Andy
ok, I’ll test it and back to you.
Thanks