Premik

Results 27 comments of Premik

I'm adding a log snippet where the error message is not caught. There is some weird compilation error but what the prettifier outputs appears like a successful build... ``` [19:45:05]...

Hi Paul, Thanks for the response. I know I could create my own logging rules and that is also why I didn't open a new ticket. This is not a...

I've just commented the three `ctypes.windll.user32..` lines in the `RightMouseNavigation.py` out. And it seems to be working. Not sure what these calls were supposed to do. Perhaps something which is...

Array of strings is probably something Swig can't handle out of the box. It would require some of the [typemap magic.](http://www.swig.org/Doc1.3/Python.html#Python_nn59) Just wondering. Are you creating some new Part in...

I'm not sure about that typemaps. It is usually bit tricky business. I see. Allocating new IRQs and using the connect_irq is the official way to add new parts. If...

To access the uart module you need to use so called **IRQ**s. IRQ is basically simavr implementation of the [observer pattern](https://en.wikipedia.org/wiki/Observer_pattern) . So to push a byte to uart you...

Hi, I can imagine you hit some simavr bug. Like this one: https://github.com/buserror/simavr/issues/144 It seems to me like once the **xoff** signal is generated the uart stops receiving bytes. As...

This is bit old question. So just for completness... The question says "interrput" but I assume it was the simavr **IRQ** thing. IRQ is a simavr name for an event...

There was some patch merged in the past. The ArduinSim now accepts **external_elf** as the last argument of the *__init__*. I think you can just provide a .hex or .axf...

I pressume a regular folder is an Arduino project. If you have multiple files I'm not sure how to do it. I'd personally just compile the sources using Arduino or...