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

Method get_num_rows

cpp_package/src/board_shim.cpp:370–379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368}
369
370int BoardShim::get_num_rows (int board_id, int preset)
371{
372 int num_rows = 0;
373 int res = ::get_num_rows (board_id, preset, &num_rows);
374 if (res != (int)BrainFlowExitCodes::STATUS_OK)
375 {
376 throw BrainFlowException ("failed to get board info", res);
377 }
378 return num_rows;
379}
380
381std::vector<std::string> BoardShim::get_eeg_names (int board_id, int preset)
382{

Callers

nothing calls this directly

Calls 2

get_num_rowsFunction · 0.85
BrainFlowExceptionClass · 0.85

Tested by

no test coverage detected