| 335 | } |
| 336 | |
| 337 | int BoardShim::get_timestamp_channel (int board_id, int preset) |
| 338 | { |
| 339 | int timestamp_channel = 0; |
| 340 | int res = ::get_timestamp_channel (board_id, preset, ×tamp_channel); |
| 341 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 342 | { |
| 343 | throw BrainFlowException ("failed to get board info", res); |
| 344 | } |
| 345 | return timestamp_channel; |
| 346 | } |
| 347 | |
| 348 | int BoardShim::get_marker_channel (int board_id, int preset) |
| 349 | { |
nothing calls this directly
no test coverage detected