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.
在 C/C++ 中
如何从串行端口读取,而不删除我已经从缓冲区中读取的信息?
我想在 linux 机器上做类似 arduino ( http://arduino.cc/en/Serial/Peek ) 的 Peek 功能。
串行端口的访问就好像它是使用文件描述符的文件一样,因此fgetc ungetc方法应该可以工作。