add mavlink sigining and wss support

This commit is contained in:
Huibean
2025-08-14 09:56:58 +08:00
parent c3c4eb64f0
commit 7bffe34f54
8 changed files with 1816 additions and 8375 deletions

View File

@@ -12,6 +12,7 @@ class WebSocketClient {
connect() {
// Reset connected status before attempting a new connection
this.connected = false;
console.log(`Connecting to WebSocket at ${this.url}`);
this.socket = new WebSocket(this.url);
this.socket.addEventListener('open', (event) => {