Results 65 comments of Michel Pollet

Alexa integration never worked for me. I installed countless version of the firmware on my switch (for MQTT mostly) but the built-in alexa support hasn't worked, ever. Sonoff touch, S20s...

My bad, really. I did write teh VCD input for a purpose, then forgot to properly document it... If you look at the files in rf_bridge, it's a bit clearer:...

I'll have a look, I think VCD input is way cool for offline development

I just think his stack is trashed, and the backtrace fails because of that; #0 /should/ be the bottom of the stack anyway, so trying to find a bug in...

Thanks for the pull request, *however* I tried hard not to add that sort of features to simavr -- that's why there's the 'simduino' which /does/ the file emapping for...

Well, I might cherry pick a few bits from here, but I have made separately a command line shell of sort for simavr, and I'd like to merge that at...

I'm not keen on adding too much to run_avr itself to be honest... Yes I do have a separate shell that I'm planning to merge pretty soon -- in fact...

Thanks for that -- some files are missing licences.. Also, I don't like having to drag in libpthread mutexes around, so far I decided that thread safety was not supposed...

Well IRQs are single threaded as well, same as the rest. If your notifications are asynchronous, you could perhaps queue/FIFO them and use a socketpair() for semaphore -- that's usually...

The idea here is to remove contention, so you don't need locks. So you get one writer per 'shared' object, and there is a communication using a small FIFO+Semaphore for...