MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / PlaybackFileBoard

Method PlaybackFileBoard

src/board_controller/playback_file_board.cpp:25–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24
25PlaybackFileBoard::PlaybackFileBoard (struct BrainFlowInputParams params)
26 : Board ((int)BoardIds::PLAYBACK_FILE_BOARD,
27 params) // its a hack - set board_id for playback board here temporary and override it
28 // with master board id in prepare_session, board_id is protected and there is no
29 // api to get it so its ok
30{
31 keep_alive = false;
32 loopback = false;
33 initialized = false;
34 use_new_timestamps = true;
35 pos_percentage.resize (3);
36 std::fill (pos_percentage.begin (), pos_percentage.end (), -1);
37}
38
39PlaybackFileBoard::~PlaybackFileBoard ()
40{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected