3.此外还提供了一些PID相关的,这里暂且不深究
/* PID controller in C, error computed outside the function */
u16 DoPID(u16 Error, u16 *Coeff);
/* Full PID in C, error computed inside the function */
u16 DoFullPID(u16 In, u16 Ref, u16 *Coeff);
/* PID controller in assembly, error computed outside the function */
u16 PID_stm32(u16 Error, u16 *Coeff);