| 255 | } |
| 256 | |
| 257 | void BoardShim::insert_marker (double value, int preset) |
| 258 | { |
| 259 | int res = ::insert_marker (value, preset, board_id, serialized_params.c_str ()); |
| 260 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 261 | { |
| 262 | throw BrainFlowException ("failed to insert marker", res); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | int BoardShim::get_board_id () |
| 267 | { |
nothing calls this directly
no test coverage detected