Skip to content
Snippets Groups Projects
Commit 2d9ffa22 authored by Christos Gentsos's avatar Christos Gentsos
Browse files

Mitig: PID functions doesn't need to be TMRed, long and not critical

parent 58017e14
Branches
No related merge requests found
......@@ -24,7 +24,7 @@ const float pid_ifMax = 50;
* \param input the current input to the PID controller
* \return the PID controller output
*/
float __xMR pid_compute(pid_cntrl_t *pid_inst, float input)
float pid_compute(pid_cntrl_t *pid_inst, float input)
{
/*Compute all the working error variables*/
float error = pid_inst->setpoint - input;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment