| 149 | } |
| 150 | |
| 151 | void BoardShim::start_stream (int buffer_size, std::string streamer_params) |
| 152 | { |
| 153 | int res = ::start_stream ( |
| 154 | buffer_size, streamer_params.c_str (), board_id, serialized_params.c_str ()); |
| 155 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 156 | { |
| 157 | throw BrainFlowException ("failed to start stream", res); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | void BoardShim::stop_stream () |
| 162 | { |
no test coverage detected