访问 NSStream 的低级属性
我有一个 Keyspan PCI 转 RS-422 适配器,用于将旧串行设备连接到 Macintosh。我想使用 NSInputStream 和 NSOutputStream 进行读取和写入,以便我可以利用异步非阻塞 I/O,因为该系统将连接多个设备,每个设备都有自己的特性。
我的问题是如何使用 NSStream 访问设备的一些低级参数(波特率、停止位计数、奇偶校验等)?
I have a Keyspan PCI to RS-422 adapter that I'm using to connect old serial devices to a Macintosh. I would like to use NSInputStream and NSOutputStream to read and write so that I can take advantage of asynchronous nonblocking I/O since there will be several devices attached to this system that each have their own idiosyncrasies.
My question is how can I access some low level parameters for the devices using a NSStream (baud rate, count of stop bits, parity, etc)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以为在问问题之前我已经研究了所有内容,但答案在另一个类(NSFilehandle)中。
I thought I researched everything before I asked the question, but the answer was in another class (NSFilehandle).