Jon Trulson

Results 21 comments of Jon Trulson

Ok, so it seems you forgot step 2 (create a new branch, call it something like "smartdrive_fixes" (git checkout -b smartdrive_fixes)). This explains the errors you got. You made changes...

Hi, could you just submit a proper PR for this if there are problems with it?

A PR is a Pull Request. That's when somebody has a patch to add some feature or fix bugs in existing code, then they create a PR so it can...

Yes :) At the time, MRAA did not have any real UART support. The only call available was mraa_uart_init(), which simply setup the muxing so that the UART pins were...

Hi, Is this the only device connected to the bus? Can you try running the C and C++ examples and see what they do? If one of those hangs too,...

Close - try adding: `-lupmc-ds18b20 -lmraa` Instead of writing your own .cxx file, you can just grab the one from this repo at examples/c++/ds18b20.cxx

It seems that instead of waiting 750ms after sending a measurement command to query the result, it was waiting for 750000ms (about 12 minutes). So - if you let it...

Yes, start a new issue. I think the issue in that case is that we do a read on the bus during certain operations (like _reset()), and it's possible that...

You bet. I've submitted MRAA PR #671 which adds a 5-second timeout to the low level byte reader. This should prevent a broken device/interface circuit from going into an infinite...