1. zmp110x的串口是不支持硬件流控的,可以通过gpio来模拟,支持补丁在附件中。
补丁使用:
1.1 打补丁
拷贝补丁文件到内核目录,执行:patch -p1 < 补丁文件
1.2 如果串口需要使用硬件流控,则对应的设备节点配置如下,以uart1为例:
&uart1 {
pinctrl-names = "default";
compatible = "zlgmcu,zmp110x-uart1-rtscts";
pinctrl-0 = <&uart1_pins &uart1_rts_pins &uart1_cts_pins>;
cts-gpios = <&gpio 89 1>;
rts-gpios = <&gpio 90 1>;
status = "okay";
};
补丁文件:
previewFile.do?fileId=1495693107628920833