10-bit CSI interface in the i.MX RT1064

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

10-bit CSI interface in the i.MX RT1064

跳至解决方案
1,624 次查看
jose_au_zone
Contributor II

Hello!

According to the reference manual (beginning of the CMOS Sensor Interface (CSI) chapter) the CSI interface should support 10-bit wide data

 

But the SDK doesn't have a configuration for that:

 

/*!
 * @brief CSI data bus witdh.
 */
typedef enum _csi_data_bus
{
    kCSI_DataBus8Bit,  /*!< 8-bit data bus. */
    kCSI_DataBus16Bit, /*!< 16-bit data bus. */
    kCSI_DataBus24Bit, /*!< 24-bit data bus. */
} csi_data_bus_t;

 

 

Can anyone confirm if the RT1064 supports 10-bit wide data in the CSI? And if so, how to properly configure it looks like the SDK doesn't support that

Thanks!

标签 (1)
0 项奖励
回复
1 解答
1,617 次查看
kerryzhou
NXP TechSupport
NXP TechSupport

Hi @jose_au_zone ,

  I help you check with our internal exprt.

  RT1064 CSI can support 10-bit interface, just the SDK didn't add it.

  So, you can add the 10bit in the 

typedef enum _csi_data_bus
{
kCSI_DataBus8Bit, /*!< 8-bit data bus. */
kCSI_DataBus16Bit, /*!< 16-bit data bus. */
kCSI_DataBus24Bit, /*!< 24-bit data bus. */
} csi_data_bus_t;

About the 10bit configuration, please check the RT1064 reference manual this part:

kerryzhou_0-1635845759101.png

kerryzhou_1-1635845764301.png

You can set the PIXEL_BIT bit to 10 bit.

Wish it helps you!

If you still have questions about it, please kindly let me know.

Kerry

 

 

在原帖中查看解决方案

0 项奖励
回复
2 回复数
1,609 次查看
jose_au_zone
Contributor II

Thank you for this!

0 项奖励
回复
1,618 次查看
kerryzhou
NXP TechSupport
NXP TechSupport

Hi @jose_au_zone ,

  I help you check with our internal exprt.

  RT1064 CSI can support 10-bit interface, just the SDK didn't add it.

  So, you can add the 10bit in the 

typedef enum _csi_data_bus
{
kCSI_DataBus8Bit, /*!< 8-bit data bus. */
kCSI_DataBus16Bit, /*!< 16-bit data bus. */
kCSI_DataBus24Bit, /*!< 24-bit data bus. */
} csi_data_bus_t;

About the 10bit configuration, please check the RT1064 reference manual this part:

kerryzhou_0-1635845759101.png

kerryzhou_1-1635845764301.png

You can set the PIXEL_BIT bit to 10 bit.

Wish it helps you!

If you still have questions about it, please kindly let me know.

Kerry

 

 

0 项奖励
回复