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
Hi there,
I get this error message after a view transmissions:
Sent Press on /Page1/Key301
/Page1/Key301 f 0.0
Sent Release on /Page1/Key301
/Page1/Key301 f 1.0
Sent Press on /Page1/Key301
/Page1/Key301 f 0.0
FATAL ERROR:
uncaught: 'cannot push beyond allocated stack'
[Process stopped]
Do you have any idea, why this is happening?
My Code:
// main.js
var oscClient = require("./osc").create("192.168.1.117", 3333);
var buttonManager = require("buttons");
buttonManager.on("buttonDown", function(obj) {
var button = buttonManager.getButton(obj.bdaddr);
console.log(button.name + " f 1.0");
oscClient.send(button.name + " f 1.0", function() {
console.log("Sent Press on " + button.name);
});
});
buttonManager.on("buttonUp", function(obj) {
var button = buttonManager.getButton(obj.bdaddr);
console.log(button.name + " f 0.0");
oscClient.send(button.name + " f 0.0", function() {
console.log("Sent Release on " + button.name);
});
});
The text was updated successfully, but these errors were encountered:
ByteBitter
changed the title
uncaught: 'cannot push beyond allocated stack'
Crash: uncaught: 'cannot push beyond allocated stack'
Aug 29, 2023
Hi there,
I get this error message after a view transmissions:
Do you have any idea, why this is happening?
My Code:
The text was updated successfully, but these errors were encountered: