Ambroz Bizjak
Ambroz Bizjak
Hi, I don't support specific IDEs. The build and configuration system is made independent of any IDE and is based on the Nix package manager. There is enough info in...
Apparently udpgw is failing to accept connections. This may be normal sometimes if a connection is aborted before it could be accepted. But anyway you can run with strace to...
My guess would be that you need to increase the maximum number of file descriptors (ulimit -n).
Depends on how you run the program. Generally the limit is raise using ulimit -n (e.g. 10000) but you may need to change system policy if you get "operation not...
Hey, Yes, there is no support for displays now, and I'm currently working on other things. If you would like to add support, it should be in form of a...
By the way, I would personally start with supporting the common character-based displays (HD44780 stuff), rather than anything more complex. So that it would work on pretty much all platforms.
Hi, Thanks for your response. We are not (to our knowledge) using asynchronous logging, we only configure ConsoleAppender using log4cplus.properties. So we will try to disable the thread pool instead....
Here's a blog post from a Microsoft developer that explicitly states that applications should not do any cleanup in DLL_PROCESS_DETACH: https://devblogs.microsoft.com/oldnewthing/20120105-00/?p=8683 IF lpReserved is indicating that the process is exiting....
Unfortunately switching to software PWM for fan triggers a problem where the fan speed will be adjusted when the g-code is received/processed and not when it's supposed to be adjusted....
I'll try changing the PWM code so that only the fan frequency would be increased and not the heater or bed frequency, to avoid possible damage to the mosfets; will...