Tristan Stenner
Tristan Stenner
It's certainly possible, but probably needlessly complicated. Still, if you want to do it you'd need to - send service advertisement packets so clients can find the device, see the...
Which compilers can you use? You won't get around reimplementing the networking code, but with newer compilers you could reuse a lot of the recent boost free code.
Which C++ standard does the ARM compiler 6 support? Since it's clang, I'm hoping for at least C++11, but C++14 would be even better. Also, is it possible to have...
> I worry about using C++ and the LSL code as is, because MCU has limited speed and memory (I think, less than 20-40 KB will be available to LSL)....
I haven't tested anything, but so far everything looks great. Some thoughts: - I already wrote a [TobiiPro](https://github.com/labstreaminglayer/App-TobiiPro) connector that should handle the TobiiPro Nano. I don't have the device...
Also, see [here](https://github.com/labstreaminglayer/App-BestPracticesGUI/tree/master/appskeleton) for some conventions that make most boilerplate parts, e.g. config handling, easier
Android LabRecorder: - https://github.com/labstreaminglayer/App-LabRecorder/issues/2 - https://github.com/labstreaminglayer/App-LabRecorder/issues/3
For nx1 / 1xn-matrices the transpose operation is O(1), i.e. it takes the same time no matter how much data you have. If performance is a real problem, you could...
> It would probably be good to have a complete list of possible arguments for the top level CMake command. That's not that easy, because CMakeLists.txt in subfolders can add...
Exactly. Windeployqt is searched for/ set once and then not touched, even if the Qt path changes. It's only started from one point in LSLCMake, so at that point t...