This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
我有一个 AM5728定制板。
我想将 UART 默认设置从 UART3更改为 UART2。
1、引脚复用设置
u-boot/board/ti/am57xx/mux_data.h
const struct pad_conf_entry core_padconf_array_ess_am572x_idk[]={
(笑声)
{UART2_RXD、(M4 | PIN_INPUT)}、/* uart2_Rxd.uart2_RxD *
{UART2_TXD、(M4 | PIN_OUTPUT)}、/* uart2_TXD.uart2_TXD *
(笑声)
}
2.设备树设置
u-boot/arch/arm/dts/am57xx-idk-common.dtsi
(笑声)
选择{
stdout-path = uart2;
};
(笑声)
uart2{(&U)
状态="正常";
};
(笑声)
我想知道除了这个部分之外、我是否需要设置一些东西。
SDK = ti-processor-sdk-linux-rt-am57xx-evm-05.03.00.07
U-boot = u-boot-2018.01+gitAUTOINC+313dcd69c2-ge2bc936055
交叉编译器= arm-linux-gnueabihf-gcc
大家好、Pavel
我自己解决了这个问题。
问题是我移除了电路板上的 EEPROM。
但是、存在问题、因为是通过 EEPROM ID 识别芯片的结构。
感谢你的答复。