You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am opening and using a serialport via node-serialport. When I close the serial port, it seems I still cannot access it from other programs. I am getting a success callback on closing the port.
When I make a subsequent call to close(), just to double check, i get this:
currentSerialPort.close(function(e) { console.log(e); })
VM831:2 Error: Serialport not open.(…)
So it seems that node-serialport does think the port is closed.
When I try to access the port with another program I get:
I am opening and using a serialport via
node-serialport
. When I close the serial port, it seems I still cannot access it from other programs. I am getting a success callback on closing the port.When I make a subsequent call to
close()
, just to double check, i get this:So it seems that
node-serialport
does think the port is closed.When I try to access the port with another program I get:
Completely closing my Electron application which is using
node-serialport
resolves the issue.The text was updated successfully, but these errors were encountered: