本文实现一个am35xskevm的uboot开机显示logo
一、从TI官网上下载裸机驱动包StarerWare
二、在rasterDisplay.c的main中找到如下函数做以下修改:
//Enable backlight
LCDBackLightEnable();
//set Lcd
SetUpLCD();
/* Configuring the base ceiling
Configure the base address register with base address of the array which contain pixels of the image to be
displayed and ceiling address register with end address of the same array using API RasterDMAFBConfig()
*/
RasterDMAFBConfig( 0x4830E000,
(unsigned int)image1,
(unsigned int)image1 + sizeof(image1) - 2,
0);
RasterDMAFBConfig( 0x4830E000,
(unsigned int)image1,
(unsigned int)image1 + sizeof(image1) - 2,
1);
/* Enable End of frame0/frame1 interrupt */
RasterIntEnable(0x4830E000,(0x00000100u)|(0x00

本文是90后嵌入式软件开发者关于am335x处理器的LCD驱动移植实践,详细记录了从UBOOT开机启动LOGO到成功显示的过程,涵盖了驱动开发的基础知识和关键步骤。
&spm=1001.2101.3001.5002&articleId=8863828&d=1&t=3&u=c1bee4bf8c874e6395c4ccb11592069e)
1181

被折叠的 条评论
为什么被折叠?



