| 129 | } |
| 130 | |
| 131 | void BoardShim::add_streamer (std::string streamer_params, int preset) |
| 132 | { |
| 133 | int res = |
| 134 | ::add_streamer (streamer_params.c_str (), preset, board_id, serialized_params.c_str ()); |
| 135 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 136 | { |
| 137 | throw BrainFlowException ("failed to add streamer", res); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | void BoardShim::delete_streamer (std::string streamer_params, int preset) |
| 142 | { |
no test coverage detected