
Hello, Detlev! Thanks for your reply. While I've been waiting for reply, I've found some information from Internet and source code. I tryed to configure current omap3evm config file, but I get errors during compilation. So I know there is no LCD support for OMAP3evm now. And now I think about the way I could implement LCD support for my board.
Thank you!
On Wednesday 05 August 2009 18:31:14 Detlev Zundel wrote:
Hi Tuma,
But now I have new question - how can I display a Bitmap picture on the board's LCD? I know there is the "bmp" command, but how should I configure and build U-Boot to have this command in prompt? My board is OMAP3EVM.
Well for the bmp command to work, an implementation for the LCD part needs to be there. Checking the configs for supported OMAP boards, not one defines CONFIG_LCD:
$ grep CONFIG_LCD `grep -l OMAP include/configs/*` | wc -l 0
As an example the MPC823 LCD controller is supported:
$ grep CONFIG_LCD `grep -l MPC823 include/configs/*` | wc -l 25
I fear that you will need to implement support for the LCD controller yourself.
Cheers Detlev