Gregor Riepl

Results 298 comments of Gregor Riepl

Ok. That seems to do the trick. Running from the source tree (with `python3 -m scudcloud`) works. Building and running the Debian package works. The source dist contains all relevant...

Yes exactly, that is the idea.

First and foremost, implement the version change. :) Then, we need to address the Lintian errors. After that, I will build the package and send it to mentors.debian.org. Then I...

You also need the source format to `native`, as I wrote in the Recommendations above.

This PR seems to include some unrelated changes/files. Can you split it up?

@gibbscullen Can you explain why this was closed? Was the documentation updated?

@smarek I tried to solve it like this: ```python def initdmx(port): with serial.Serial(port=port, baudrate=250000, bytesize=8, parity='N', stopbits=2, timeout=1.0) as ser: fd = ser.fileno() attr = termios.tcgetattr(fd) # enable breaks: set...

I have tested a bunch of RS485-to-USB converters and observed the same problem: The frame sync goes all over the place practically instantly, and I can't manage to synchronize to...

This may be difficult to discern. The zero value could very well be what the user wants stored, and when unmarshalling, there is a value stored in the XML anyway....

After a bit of experimentation, it seems this is even more difficult to solve. Default values are attached to attributes, not types, so they cannot be handled easily by a...