| 159 | } |
| 160 | |
| 161 | void BoardShim::stop_stream () |
| 162 | { |
| 163 | int res = ::stop_stream (board_id, serialized_params.c_str ()); |
| 164 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 165 | { |
| 166 | throw BrainFlowException ("failed to stop stream", res); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void BoardShim::release_session () |
| 171 | { |
no test coverage detected