Phil Hord
Phil Hord
That's weird that it didn't fail for me before. I was running basically the same thing you are. But it fails for me every time now. I fixed it and...
That looks awful. We should add a simulator unit test to validate precision. I was happy when smooth-curves came out exactly right. But I obviously need more complicated motions to...
@Wurstnase This is fixed now. I've still only tested in the simulator so far.
I don't see any problem with the zungman gcode test in the simulator. I'm unable to get it to work in simulavr for some reason. It never starts processing the...
Fwiw, I frequently have unnamed and untagged branches. Submodules keep me "detached" so frequently that I just get used to it. Try this in a project where you have rebased...
I have seen some problems in the recent past when calculating diagonal speeds which I have attributed to overflow but it may be caused just by some precision loss during...
The [Digistump Oak](http://digistump.com/wiki/oak/tutorials/pinout) supports 11 digital and 1 analog pins. [Huzzah 8266 by Adafruit](https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/pinouts) has 9 digital and one analog. The difference seems to be that the Huzzah reserves two...
Notes after looking at the home_delta() function on the delta branch. It seems to disable kinematics (`bypass_delta=1`). It seems to ignore X/Y/Z_MIN/MAX, but it looks to me like it assumes...
I bought a RRD board to use with my last printer build. I used Marlin for the build initially but I had several problems with it, probably due mostly to...
Add an "arg" pointer parameter to each struct, maybe? ``` typedef struct { const char text[30]; uint32_t * arg; func menu_function; uint8_t next; } MENU_t; // ... uint32_t flow=100, speed=100;...