Results 129 comments of Andrey Parfenov

"I'm making them all "const char *" in board_controller.h instead." Its not ok, some other bindings don't like `const char *`. Lets find a way to keep board_controller.h as is(add...

I cannot say that I fully understand what exactly they are doing here https://forums.swift.org/t/how-to-pass-swift-string-to-c-function-in-swift-5/28416 but seems like its doable with `char *` in C header

You dont need to port BrainFlowArray to Swift, its numpy-like optimization specific for C++. Key idea there is memory layout(2d array is 1d array in fact) You can do the...

More info if you are interested: https://brainflow.org/2021-03-09-new-major-version/

"For the app I am building, all I need is a 2D matrix of doubles, so I will focus on that initially. For testing purposes, to make sure I reshape...

Yes, that's 100% correct!

package_num, for real boards it can be used to track package loss

Yes, you can call method get_board_descr to get info about these rows programmatically, or take a look at https://github.com/brainflow-dev/brainflow/blob/master/src/board_controller/brainflow_boards.cpp

Thanks, @ScottThomasMiller, I will review it soon and will do some minor changes