This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
工具与软件:
您好、TI:
我们的视频流系统现在正在进行以下建模:
摄像头(IMX490传感器+ UB953串行器)=> FPDLinkII (UB954解串器)=> SoC (DSI)=> GMSL (Maz96789串行器)=>输出
目前,我们需要一些参数/配置来配置 DSI 驱动程序,如下所示。 您能支持我们在哪里可以找到和配置这些参数吗? 非常感谢!
非常感谢!
Dinh Pham
您好、Brijesh:
您能详细解释一下吗? 我们是否可以在 DSI 驱动程序中检查或重新配置视频参数? 因为我知道、显示设备中的视频参数必须与 DSI config 中的这些参数兼容。
谢谢、此致、
Dinh
尊敬的 Dinh:
这些参数在 appInit API 中的 ti-processor-sdk-rtos-j721e-evm-08_05_00_11\vision_apps\platform\j721e\rtos\common\app_init.c 文件中设置。
请查看设置该参数的代码片段。
#ifdef ENABLE_DSS_SINGLE { app_dss_default_prm_t prm; appDssDefaultSetDefaultPrm(&prm); #ifdef ENABLE_DSS_HDMI prm.display_type = APP_DSS_DEFAULT_DISPLAY_TYPE_DPI_HDMI; #endif #ifdef ENABLE_DSS_EDP prm.display_type = APP_DSS_DEFAULT_DISPLAY_TYPE_EDP; #endif prm.enableM2m = true; /* Do not rely on "init". Always provide known good tmings */ prm.timings.width = 1920U; prm.timings.height = 1080U; prm.timings.hFrontPorch = 88U; prm.timings.hBackPorch = 148U; prm.timings.hSyncLen = 44U; prm.timings.vFrontPorch = 4U; prm.timings.vBackPorch = 36U; prm.timings.vSyncLen = 5U; prm.timings.pixelClock = 148500000ULL; #ifdef ENABLE_DSS_DSI prm.display_type = APP_DSS_DEFAULT_DISPLAY_TYPE_DSI; prm.timings.width = 1280U; prm.timings.height = 800U; prm.timings.hFrontPorch = 110U; prm.timings.hBackPorch = 220U; prm.timings.hSyncLen = 40U; prm.timings.vFrontPorch = 5U; prm.timings.vBackPorch = 20U; prm.timings.vSyncLen = 5U; prm.timings.pixelClock = 74250000ULL; #endif status = appDssDefaultInit(&prm); APP_ASSERT_SUCCESS(status); } #endif
此致、
Brijesh