Merge branch 'development'

#Conflicts:
#	.DS_Store
This commit is contained in:
“VeLiTi”
2025-12-16 11:45:13 +01:00
99 changed files with 3989 additions and 674 deletions

View File

@@ -78,7 +78,13 @@ async function connectSerial() {
};
await logCommunication(`Selected USB device - ${JSON.stringify(portDetails)}`, 'connected');
await port.open({ baudRate: 56700 });
await port.open({
baudRate: 56700,
dataBits: 8,
stopBits: 1,
parity: 'none',
flowControl: 'none'
});
listenToPort();