Propanu
Propanu
Hi @Orch3strator, unfortunately the UPM Python documentation doesn't include descriptions for the constructor unless you expand the source and that's easy to overlook. However, if you scroll to the __init__...
Hi, it would make sense to support something in this style as a generic driver for RF kits. We'll look into it, thanks for bringing it up!
Hi, to use MRAA & UPM with the Intel Aero board you'll need to initialize MRAA using a JSON platform file. The `mraa.initJsonPlatform(std::string path) → mraa::Result` function would do it,...
Can you please post the MRAA log you get from `journalctl -f` or were you able to figure it out?
MRAA/UPM won't build with nodejs 7.0.0+ out of the box because of a missing SWIG patch. The workaround is described on the MRAA documentation pages: https://github.com/intel-iot-devkit/mraa/blob/master/docs/building.md#javascript-bindings-for-nodejs-700 Alternatively, you could simply...
After you modified all the files you want, use `git add -A` and it will stage all the changes for you. Then commit your changes using something like `git commit...
You can't push directly to the intel-iot-devkit org. You'll have to work with your own fork of the UPM repository: `git remote set-url origin https://github.com/neuberfran/upm.git`. Once you update your copy,...
They would be on your new `smartdrive_fixes` branch: https://github.com/neuberfran/upm/blob/smartdrive_fixes/src/smartdrive/.
Run `git commit --amend` and it will open the editor to change the commit message. You can also add any code file changes with `git commit -a --amend`. Once done,...
You need to work on, and compare the `smartdrive_fixes` branch. Technically, you don't have to touch the PR after you open it, just update that branch and Github will update...