Skip to content
Snippets Groups Projects
Commit f0172b24 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added integral error reset setter

parent be715234
Branches master
No related tags found
No related merge requests found
......@@ -127,7 +127,8 @@ bool Communicator::isSetCommand_(){
cmd_ == 'I' ||
cmd_ == 'D' ||
cmd_ == 'N' ||
cmd_ == 'S';
cmd_ == 'S' ||
cmd_ == 'E';
}
bool Communicator::isGetCommand_(){
......@@ -203,6 +204,12 @@ void Communicator::handleSetCommand_(){
sendBuf_();
return;
}
else if(cmd_ == 'E'){
Pid_controller::set_I_reset_errsq(darg);
snprintf(outbuf_, 255, ";");
sendBuf_();
return;
}
}
void Communicator::handleNopCommand_(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment