我在QT中使用Qextserialport,但我不断收到警告:
CommEvent overlapped write error: 995
此警告是什么意思?更重要的是,我该如何解决?
从源头来看,995 似乎是GetLastError()
返回的。 995 代表 ERROR_OPERATION_ABORTED
- 由于线程退出或应用程序请求,I/O 操作已中止。
这是来自winerror.h
:
//
// MessageId: ERROR_OPERATION_ABORTED
//
// MessageText:
//
// The I/O operation has been aborted because of either a thread exit or an application request.
//
#define ERROR_OPERATION_ABORTED 995L