Mac OSX上有串行端口模拟器吗?我正在Mac上开发一个控制串行设备(RS232)的程序。我曾经用com0com为串行设备验证我的程序,但这只是windows。
我读过这篇文章,但还是徒劳无功。MultiCom不是我想要的。我需要一个创建/模拟虚拟串行设备的软件。
提前感谢您的帮助。
在Mac上模拟串行设备(RS232)的一种方法是插入Arduino(当然需要硬件,但可以模拟许多其他设备)。我用它来模拟更昂贵的传感器。这是一个来自Arduino网站的代码的简单示例,该代码经过轻微修改以连续打印声明。
// the setup routine runs once
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
// Wait for serial port to connect (Needed for native USB port only)
while (!Serial) {
;
}
}
// the loop routine runs over and over again forever:
void loop() {
// Print a statement through Serial
Serial.println("Hello world !");
// Some delay
delay(10);
}