| 324 | } |
| 325 | |
| 326 | int BoardShim::get_package_num_channel (int board_id, int preset) |
| 327 | { |
| 328 | int package_num_channel = -1; |
| 329 | int res = ::get_package_num_channel (board_id, preset, &package_num_channel); |
| 330 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 331 | { |
| 332 | throw BrainFlowException ("failed to get board info", res); |
| 333 | } |
| 334 | return package_num_channel; |
| 335 | } |
| 336 | |
| 337 | int BoardShim::get_timestamp_channel (int board_id, int preset) |
| 338 | { |
nothing calls this directly
no test coverage detected