Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须创建一个程序来获取二进制文件并通过 UART 将其传输到另一个设备,我怎样才能从文件中制作数据包。请帮助我谢谢
UART 级别没有数据包,只有字节流。如果要将文件放入数据包中,请定义自己的数据包格式,在其中添加一些标头字节(文件名、大小等),然后是文件数据,并可能以 CRC 结尾。然后你在 UART 上流式传输你的数据包并在另一端解析它。