From ab66f3056829ea63c11028d618acc9518c6d576d Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 1 Apr 2024 22:44:25 -0500 Subject: [PATCH] add ability for osc plugins to specify slip encoding --- src/device.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/device.js b/src/device.js index bd48864..14f6cd9 100644 --- a/src/device.js +++ b/src/device.js @@ -122,6 +122,7 @@ function initDeviceConnection(id) { device.connection = new osc.TCPSocketPort({ address: device.addresses[0], port: device.remotePort, + useSLIP: plugins[type].config.useSLIP !== undefined ? plugins[type].config.useSLIP : true }); } device.connection.open();