Thomas Perl
Thomas Perl
For the record, the error I'm getting when building binutils: ``` $HOME/.zeranoe/mingw-w64/src/binutils/isl/include/isl/cpp.h:4237:68: error: no member named 'on_error' in 'isl::exception' options_scoped_set_on_error saved_on_error(saved_ctx, exception::on_error); ~~~~~~~~~~~^ ```
Ok, the particular error above is fixed by adding `-std=c++14` to the `CXXFLAGS` when building with clang. But now binutils fails with this: ``` checking langinfo.h presence... configure: error: GAS...
As long as it's in your `$PYTHONPATH`, it should work just fine.
Rebased against latest master branch.
@xerpi When you have a moment, can you have a quick look if this is something that can be merged?
@nkrapivin It seems to be implemented in vitashell here: https://github.com/TheOfficialFloW/VitaShell/blob/master/main.c#L1221 ..and registered with `ftpvita_ext_add_custom_command()` here: https://github.com/TheOfficialFloW/VitaShell/blob/master/main.c#L205
Please also check out the docs in the header file: https://github.com/thp/psmoveapi/blob/master/include/psmove.h#L635 Here's the lowdown: If you want to process all events, you MUST use: while (psmove_poll(move)) { // process events...
Also, this part of the documentation: ``` * How to detect dropped frames: * * \code * int seq_old = 0; * while (1) { * int seq = psmove_poll(move);...
I assume you did a proper `./psmove pair` that would write BlueZ config files? Were the files in `/var/lib/bluetooth/` properly created after that? If pairing works, you shouldn't get a...
Is there a way where we could add all the information to BlueZ' config so that the device would be as-if it was "classic bonded"? We already introduce the two...