用@xboot大佬的代码 https://whycan.com/t_6902.html ,想测试一下摄像头,编译出来的xboot.bin(工具链用的是gcc-arm-10.2-2020.11-x86_64-arm-none-eabi)烧进RAM进行测试,默认的打印串口应该是串口0,我板子上的是串口1,不知道到怎么把调试串口改成串口1,试着把设备树sast-kk131.json里面的
"console-uart@0": {
"uart-bus": "uart-16550.0"
}
改成
"console-uart@0": {
"uart-bus": "uart-16550.1"
}
串口还是没有输出,有知道怎么改的大佬吗
最近编辑记录 岁月快快快 (2022-01-06 15:21:00)
离线
已解决
离线
怎么解决的?
记录一下,万一以后又忘了;)
"uart-16550@0x01c25400": {
"clock-name": "link-uart1",
"reset": 85,
"txd-gpio": 3,
"txd-gpio-config": 5,
"rxd-gpio": 2,
"rxd-gpio-config": 5,
"baud-rates": 115200,
"data-bits": 8,
"parity-bits": 0,
"stop-bits": 1
},
txd-gpio rxd-gpio 改成对应的IO口
离线