我在Intel Atom处理器上运行我的应用程序。我的电脑没有问题,只有平板电脑。
Application.Run(new MyApp());
public MyApp()
{
...
SerialPort port = new SerialPort(...)
port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);
port.Open();
}
当我在我的电脑上运行我的应用程序时,没有任何问题,我可以发送串行数据,只要我愿意。但是,当我在平板电脑上运行它时,在启动大约一分钟后,串口关闭,不再读取。我不确定如何调试它。