| 8 | #include "timestamp.h" |
| 9 | |
| 10 | Explore::Explore (int board_id, struct BrainFlowInputParams params) : BTLibBoard (board_id, params) |
| 11 | { |
| 12 | keep_alive = false; |
| 13 | last_eeg_timestamp = -1; |
| 14 | state = (int)BrainFlowExitCodes::SYNC_TIMEOUT_ERROR; |
| 15 | eeg_sampling_rate = Board::get_board_sampling_rate ((int)BrainFlowPresets::DEFAULT_PRESET); |
| 16 | } |
| 17 | |
| 18 | Explore::~Explore () |
| 19 | { |
nothing calls this directly
no test coverage detected