| 139 | } |
| 140 | |
| 141 | void BoardShim::delete_streamer (std::string streamer_params, int preset) |
| 142 | { |
| 143 | int res = |
| 144 | ::delete_streamer (streamer_params.c_str (), preset, board_id, serialized_params.c_str ()); |
| 145 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 146 | { |
| 147 | throw BrainFlowException ("failed to delete streamer", res); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | void BoardShim::start_stream (int buffer_size, std::string streamer_params) |
| 152 | { |
nothing calls this directly
no test coverage detected