Page 1 of 1

RV1103 LCD屏幕显示终端

Posted: 2024-07-19 14:27
by mingming
板子是LuckFoxPico rv1103,已经实现了fb0驱动lcd,lvgl也测试成功,现在想在lcd上显示终端,开机log在lcd上显示,可以不连接电脑,使用外接键盘操作,有没有详细一些的教程

Re: RV1103 LCD屏幕显示终端

Posted: 2024-07-31 2:32
by Crocodile
您好,开机log显示到LCD上需要修改对应的dtsi(rv1103-luckfox-pico-ipc.dtsi)下的

Code: Select all

-		bootargs = "earlycon=uart8250,mmio32,0xff4c0000 console=ttyFIQ0 root=/dev/mmcblk1p7 rootwait snd_soc_core.prealloc_buffer_size_kbytes=16 coherent_pool=0";
+ 		bootargs = "earlycon=uart8250,mmio32,0xff4c0000 console=ttyFIQ0 console=tty0 root=/dev/mmcblk1p7 rootwait snd_soc_core.prealloc_buffer_size_kbytes=16 coherent_pool=0";
使用外接键盘需要在内核打开USB HID 等设置,这部分没有测试过,您可以自行开发如果在配置上遇到问题欢迎您提出