ignore errors closing serial port

This commit is contained in:
liamcottle
2024-10-06 16:50:03 +13:00
parent 226936a5e5
commit a89ded61b0
2 changed files with 16 additions and 3 deletions

View File

@@ -135,7 +135,11 @@ class RNode {
}
async close() {
await this.serialPort.close();
try {
await this.serialPort.close();
} catch(e) {
console.log("failed to close serial port, ignoring...", e);
}
}
async write(bytes) {