Traumflug

Results 424 comments of Traumflug

Sorry, can't say much about this, so far I never used the Python interface. I run SimulAVR always from the command line directly. Maybe you have more luck on the...

Nice thing is, the original patch doesn't show this misbehaviour, running Teacup Firmware brings pretty much the same results as without the patch: Unpatched: ![unpatched](https://cloud.githubusercontent.com/assets/318581/9957498/dbb2fa0e-5e00-11e5-8073-04ac9d6f9b84.png) With @mhx patch: ![mhx patch](https://cloud.githubusercontent.com/assets/318581/9957499/e186cf00-5e00-11e5-80e8-f8750186917e.png)...

The obvious course of action is to remove the upstream patch and apply the @mhx one, which is what I did for branch _traumflug_. This branch is now fine again....

While C++ is no longer a superset of C, so simply renaming a file can break things, I think this is a linking problem. Off the top of my head,...

This one might help: https://github.com/Traumflug/Teacup_Firmware/issues/103

Maybe I'm a bit late, but yes, I had this, too. As I wasn't so keen on hunting this down, I first rebased the traumflug branch onto the latest one...

Thanks a lot for the contribution, miso-. Just picked all three of your additional commits (from both topic branches) onto the traumflug branch here, it appears to work fine (as...

Looks like Arduino libraries use the U2X flag (double speed serial) even for low speed serial communications. Unfortunately, this flag doesn't work in SimulAVR. With Teacup, I have to limit...

A couple of days ago I got this from a customer: I did find one bug in line 92 of the data.py file controlling "reFloat" formatting for printer max and...

I'd guess you run into integer overflows. Teacup stores distances in micrometers and 2^31÷1000000 = 2,147. And there's some margin needed for calculations. Workaround could be to multiply everything distance...