I'm using Qextserialport in QT, but I keep getting a waring:
CommEvent overlapped write error: 995
What does this warning mean? And more important, how do I solve it?
I'm using Qextserialport in QT, but I keep getting a waring:
CommEvent overlapped write error: 995
What does this warning mean? And more important, how do I solve it?
Copyright © 2021 Jogjafile Inc.
From the source it seems 995 is what
GetLastError()
returned. 995 stands forERROR_OPERATION_ABORTED
- The I/O operation has been aborted because of either a thread exit or an application request.This is from
winerror.h
: