From one day to the other PUCK ERROR #4383
Replies: 1 comment
-
Posted at 2025-01-28 by user157578 I also found another issue when looking at the Pucks RAM it displays the wrong code:
When looking at the RAM of the Puck however I am seeing this:
How do I clear this mess?? Posted at 2025-01-29 by @gfwilliams The error is pretty simple - as it says, you ran out of memory. What you see in RAM with the big array is the reason it ran out of memory. Now I don't know much about what you're doing, but this looks a bit like the 433Mhz or IR receiver code - it listens for pin changes on D1, writes the time between them into an array, and only outputs it after there's a gap of 200ms with no data coming in. What's happened is for some reason there is no longer a gap in the data that's coming in, so it's just filling up the array. Nothing has changed on Puck.js, and it would always have had this problem if the data coming in never paused. You could change:
which would avoid the error by only storing at most 100 items in the array |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2025-01-28 by user157578
Hello I am currently experiencing this error message:
ERROR: Ctrl-C while processing watch - removing it.
Execution Interrupted during event processing.
New interpreter error: CALLBACK,LOW_MEMORY,MEMORY
ERROR: Ctrl-C while processing interval - removing it.
Execution Interrupted during event processing.
2 days ago I did not experience this error and my project for my studies connected and I was able to use all infrared functions.
yesterday I drained a battery so I had to wait to buy one today but I am unable to use it like before.
I saw a 5 year old post discussing the same problem but there is no step by step instructions for resolving this issue.
Do I need to go through the new firmware update and try and upload that again??
Attachments:
Beta Was this translation helpful? Give feedback.
All reactions