stm32f334-disco/src/stm32_smps.c: fix compilation error

This commit is contained in:
raiden00pl
2021-03-31 10:06:46 +02:00
committed by Xiang Xiao
parent 61389ad616
commit bf88e6d250
@@ -211,7 +211,7 @@ struct smps_priv_s
float v_in; /* Voltage input real value in V */ float v_in; /* Voltage input real value in V */
float v_out; /* Voltage output real value in V */ float v_out; /* Voltage output real value in V */
bool running; /* Running flag */ bool running; /* Running flag */
pid_controller_t pid; /* PID controller */ pid_controller_f32_t pid; /* PID controller */
float *c_limit_tab; /* Current limit tab */ float *c_limit_tab; /* Current limit tab */
}; };