| 569 | } |
| 570 | |
| 571 | std::vector<int> BoardShim::get_other_channels (int board_id, int preset) |
| 572 | { |
| 573 | int channels[MAX_CHANNELS]; |
| 574 | int len = 0; |
| 575 | int res = ::get_other_channels (board_id, preset, channels, &len); |
| 576 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 577 | { |
| 578 | throw BrainFlowException ("failed to get board info", res); |
| 579 | } |
| 580 | return std::vector<int> (channels, channels + len); |
| 581 | } |
| 582 | |
| 583 | std::vector<int> BoardShim::get_temperature_channels (int board_id, int preset) |
| 584 | { |
nothing calls this directly
no test coverage detected