使用MLX90640自制红外热像仪:stm32f103c8t6刷320x240分辨率屏的时间测试
Posted qlexcel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用MLX90640自制红外热像仪:stm32f103c8t6刷320x240分辨率屏的时间测试相关的知识,希望对你有一定的参考价值。
要显示MLX90640的数据,需要每次把320*240个像素点全部刷新一次。现在来测试下stm32f103c8t6使用普通IO刷屏。
72M主频的stm32f103c8t6刷TFT,全屏一直刷新测试
硬件连接:
/******************************* ILI9341 显示屏8080通讯引脚定义 ***************************/
/******控制信号线******/
//片选
#define ILI9341_CS_CLK RCC_APB2Periph_GPIOA
#define ILI9341_CS_PORT GPIOA
#define ILI9341_CS_PIN GPIO_Pin_3
//DC引脚
#define ILI9341_DC_CLK RCC_APB2Periph_GPIOA
#define ILI9341_DC_PORT GPIOA
#define ILI9341_DC_PIN GPIO_Pin_2
//写使能
#define ILI9341_WR_CLK RCC_APB2Periph_GPIOC
#define ILI9341_WR_PORT GPIOC
#define ILI9341_WR_PIN GPIO_Pin_15
//读使能
#define ILI9341_RD_CLK RCC_APB2Periph_GPIOC
#define ILI9341_RD_PORT GPIOC
#define ILI9341_RD_PIN GPIO_Pin_14
//复位引脚直接使用NRST,开发板复位的时候会使液晶复位
//背光引脚
#define ILI9341_BK_CLK RCC_APB2Periph_GPIOA
#define ILI9341_BK_PORT GPIOA
#define ILI9341_BK_PIN GPIO_Pin_8
/********数据信号线***************/
#define ILI9341_DATA_CLK RCC_APB2Periph_GPIOB
#define ILI9341_DATA_PORT GPIOB
#define ILI9341_DATA_PIN GPIO_Pin_All
/********信号线控制相关的宏***************/
#define ILI9341_CS_SET ILI9341_CS_PORT->BSRR=ILI9341_CS_PIN //片选端口
#define ILI9341_DC_SET ILI9341_DC_PORT->BSRR=ILI9341_DC_PIN //数据/命令
#define ILI9341_WR_SET ILI9341_WR_PORT->BSRR=ILI9341_WR_PIN //写数据
#define ILI9341_RD_SET ILI9341_RD_PORT->BSRR=ILI9341_RD_PIN //读数据
#define ILI9341_CS_CLR ILI9341_CS_PORT->BRR=ILI9341_CS_PIN //片选端口
#define ILI9341_DC_CLR ILI9341_DC_PORT->BRR=ILI9341_DC_PIN //数据/命令
#define ILI9341_WR_CLR ILI9341_WR_PORT->BRR=ILI9341_WR_PIN //写数据
#define ILI9341_RD_CLR ILI9341_RD_PORT->BRR=ILI9341_RD_PIN //读数据
//数据线输入输出
#define DATAOUT(x) ILI9341_DATA_PORT->ODR=x; //数据输出
#define DATAIN ILI9341_DATA_PORT->IDR; //数据输入
//写数据函数
#define ILI9341_Write_Data(data){\\
ILI9341_DC_SET;\\
ILI9341_CS_CLR;\\
DATAOUT(data);\\
ILI9341_WR_CLR;\\
ILI9341_WR_SET;\\
ILI9341_CS_SET;\\
}
//================================================================================================
// 实现功能: 设置窗口
// 输入参数: x0,y0,x1,y1 x轴开始,y轴开始,x轴结束,y轴结束
//================================================================================================
void LCD_setwindow(unsigned int x0,unsigned int y0,unsigned int x1,unsigned int y1)
{
ILI9341_Write_Cmd(0x2a);
ILI9341_Write_Data(x0>>8);
ILI9341_Write_Data(x0&0xff);
ILI9341_Write_Data(x1>>8);
ILI9341_Write_Data(x1&0xff);
ILI9341_Write_Cmd(0x2b);
ILI9341_Write_Data(y0>>8);
ILI9341_Write_Data(y0&0xff);
ILI9341_Write_Data(y1>>8);
ILI9341_Write_Data(y1&0xff);
ILI9341_Write_Cmd(0x2C);
}
测试函数
uint16_t color_add;
void Disp_test()
{
uint16_t x,y,color;
color_add+=300;
LED_IO_HIGH();
LCD_setwindow(0,0,319,239);
for(y=0;y<240;y++)
for(x=0;x<320;x++)
ILI9341_Write_Data( color_add );
LED_IO_LOW();
}
可以看到ILI9341_Write_Data已经使用宏定义了,使用IO口的高电平标记时间:
测量出来刷一次时间为55ms,肉眼可看出明显刷屏的感觉。
以上是关于使用MLX90640自制红外热像仪:stm32f103c8t6刷320x240分辨率屏的时间测试的主要内容,如果未能解决你的问题,请参考以下文章