MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / get_board_data_count

Method get_board_data_count

cpp_package/src/board_shim.cpp:179–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

177}
178
179int BoardShim::get_board_data_count (int preset)
180{
181 int data_count = 0;
182 int res = ::get_board_data_count (preset, &data_count, board_id, serialized_params.c_str ());
183 if (res != (int)BrainFlowExitCodes::STATUS_OK)
184 {
185 throw BrainFlowException ("failed to get board data count", res);
186 }
187 return data_count;
188}
189
190BrainFlowArray<double, 2> BoardShim::get_board_data (int preset)
191{

Callers

nothing calls this directly

Calls 2

get_board_data_countFunction · 0.85
BrainFlowExceptionClass · 0.85

Tested by

no test coverage detected