标签: ios macos serial-port
在MacOS中是否有库调用来列出可用的串口和每个串口的设置?希望能够以最小的难度在某个时间移植到iOS上。
如果可能的话,我不想system("ls /dev/tty.*")和system("stty ...")。
system("ls /dev/tty.*")
system("stty ...")
答案 0 :(得分:5)
您使用IOKit调用来查找串行端口。
请参阅:Documentation和Sample Code