processEnginectrl.cpp
62 lines
| 1.1 KiB
| text/x-c
|
CppLexer
|
r132 | /* | ||
* processEnginectrl.cpp | ||||
* | ||||
* Created on: Oct 16, 2014 | ||||
* Author: Alan Aguilar Sologuren | ||||
*/ | ||||
#include "processEnginectrl.h" | ||||
processEngine_ctrl::processEngine_ctrl(): | ||||
pdtpkg(nullptr),pe_chns(nullptr){ | ||||
// TODO Auto-generated constructor stub | ||||
} | ||||
processEngine_ctrl::~processEngine_ctrl() { | ||||
// TODO Auto-generated destructor stub | ||||
} | ||||
bool processEngine_ctrl::peCtrl_initialization(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_activate(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_deactivate(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_set_decimation(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_set_baudrate(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_get_information(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_set_param(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_chn_get_param(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_start_acquition(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_stop_acquisition(void*){ | ||||
return true; | ||||
} | ||||
bool processEngine_ctrl::peCtrl_get_new_data(void*){ | ||||
return true; | ||||
} | ||||