| 246 | } |
| 247 | |
| 248 | void BoardShim::config_board_with_bytes (const char *bytes, int len) |
| 249 | { |
| 250 | int res = ::config_board_with_bytes (bytes, len, board_id, serialized_params.c_str ()); |
| 251 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 252 | { |
| 253 | throw BrainFlowException ("failed to config board with bytes", res); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | void BoardShim::insert_marker (double value, int preset) |
| 258 | { |
nothing calls this directly
no test coverage detected