Phil Hord

Results 137 comments of Phil Hord

Do you know that -h works even when --help does not? Do you know why? > $ git imerge --help > No manual entry for git-imerge > See 'man 7...

Hm. `err_codes` is defined in the intercom.h file, and also in the extruder/intercom.h file. I wonder if your model is including both of them somewhere. Can you try renaming one...

That's common in C. The enumerated values are often the only part that matters. In this case, it's `ERROR_BAD_CRC`.

Which I switch tabs, the colors remain screwy. The correct if I choose a theme in the System settings, but which I switch tabs, they go nuts again. So, this...

The homing works by setting the position to an extreme position (`dir * MAX_DELTA_UM`) and stopping when the endstop is triggered. If you add a home command which uses a...

I have a commit that records the position where the endstop was triggered. I needed it for Z-Probing the bed using the BLTouch probe. Maybe you can use something similar...

In Teacup a servo is configured like a heater. It's not well-documented as it's rarely used. M106 is used to control the PWM for heaters and other devices. Servo math...

Make sure to choose a PWM pin that uses Timer0. The other pins are probably not configured correctly, and Timer1 is used internally.

Periodic temperature reporting with M155 is added on the experimental branch at 47dfcf1a44d8fad4edac2b23cb894f98b961365c.

I don't think I've seen this before. Also, teacup does process the entire g-code before determining if it's valid. So I'm confused. Maybe some parameter field isn't recognized or the...