| 177 | } |
| 178 | |
| 179 | int 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 | |
| 190 | BrainFlowArray<double, 2> BoardShim::get_board_data (int preset) |
| 191 | { |
nothing calls this directly
no test coverage detected