我使用 3 个 uart 口, uart0 作为打印口, uart2, uart3 作通讯口,
要在uboot 中 作测试指令 测试 uart2 收发是否正常, 这个测试程序
早些版本的 代码大概使用
_serial_start(port);
_serial_setbrg(port);
_serial_tstc(port);
_serial_putc_raw(port); 等等。
uboot sdk6.0 后 引入DM后 , 怎么样实现类似的功能呢?
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.
我使用 3 个 uart 口, uart0 作为打印口, uart2, uart3 作通讯口,
要在uboot 中 作测试指令 测试 uart2 收发是否正常, 这个测试程序
早些版本的 代码大概使用
_serial_start(port);
_serial_setbrg(port);
_serial_tstc(port);
_serial_putc_raw(port); 等等。
uboot sdk6.0 后 引入DM后 , 怎么样实现类似的功能呢?