processEnginectrl.cpp
43 lines
| 807 B
| text/x-c
|
CppLexer
|
r132 | /* | ||
* processEnginectrl.cpp | ||||
* | ||||
* Created on: Oct 16, 2014 | ||||
* Author: Alan Aguilar Sologuren | ||||
*/ | ||||
#include "processEnginectrl.h" | ||||
processEngine_ctrl::processEngine_ctrl(): | ||||
|
r216 | pdtpkg(nullptr),pe_chns(nullptr),conf_dir(nullptr){ | ||
|
r132 | // TODO Auto-generated constructor stub | ||
} | ||||
processEngine_ctrl::~processEngine_ctrl() { | ||||
// TODO Auto-generated destructor stub | ||||
} | ||||
|
r216 | void processEngine_ctrl::peCtrl_set_config_directory(const char* confdir){ | ||
|
r132 | } | ||
|
r216 | bool processEngine_ctrl::peCtrl_initialization(){ | ||
|
r132 | return true; | ||
} | ||||
|
r216 | bool processEngine_ctrl::peCtrl_start_acquisition(){ | ||
|
r132 | return true; | ||
} | ||||
|
r216 | bool processEngine_ctrl::peCtrl_stop_acquisition(){ | ||
|
r132 | return true; | ||
} | ||||
|
r216 | bool processEngine_ctrl::peCtrl_get_data_buffer(void* buff){ | ||
|
r132 | return true; | ||
} | ||||
|
r216 | bool processEngine_ctrl::peCtrl_chn_initialization(uint8_t chn){ | ||
|
r132 | return true; | ||
} | ||||