Re: [sigrok-devel] Protocol Decoder development tools

2016-10-05 Thread Daniel Kowalski
On Mon, 3 Oct 2016 09:30:38 -0700 Chris Dreher wrote: > So far, all I've used is a text editor, running pdtest, and using > self.put() for crude debug output. Is there a better way to print > debug output? Is there a debugger to single-step through the python > script code and observe variables

Re: [sigrok-devel] Protocol Decoder development tools

2016-10-04 Thread Uwe Hermann
Hi, On Mon, Oct 03, 2016 at 09:30:38AM -0700, Chris Dreher wrote: > What tools are people using to develop protocol decoders? > > So far, all I've used is a text editor, running pdtest, and using self.put() > for crude debug output. Is there a better way to print debug output? Is > there a de

Re: [sigrok-devel] Protocol Decoder development tools

2016-10-03 Thread Soeren Apel
Hi Chris, I myself use an editor, a sample .sd and the console output with appropriate print statements. Recently, I came across Rudolf Reuter's setup: http://www.rudiswiki.de/wiki9/SigrokDecoder I haven't tried it yet but it's certainly more sophisticated. As Winpdb is cross-platform, I do rea

Re: [sigrok-devel] Protocol Decoder development tools

2016-10-03 Thread Christoph Zimmermann
Hi Chris > What tools are people using to develop protocol decoders? I have not developed a PD yet. So my answer is just a general Python answer (Still as a Python newbee). > Is there a debugger to single-step through the python > script code and observe variables? For this reasons I selected