| 346 | } |
| 347 | |
| 348 | int BoardShim::get_marker_channel (int board_id, int preset) |
| 349 | { |
| 350 | int marker_channel = 0; |
| 351 | int res = ::get_marker_channel (board_id, preset, &marker_channel); |
| 352 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 353 | { |
| 354 | throw BrainFlowException ("failed to get board info", res); |
| 355 | } |
| 356 | return marker_channel; |
| 357 | } |
| 358 | |
| 359 | int BoardShim::get_battery_channel (int board_id, int preset) |
| 360 | { |
nothing calls this directly
no test coverage detected