00001 /* ---------------------------------------------------------------------- 00002 * Copyright (C) 2011 ARM Limited. All rights reserved. 00003 * 00004 * $Date: 15. December 2011 00005 * $Revision: V2.0.0 00006 * 00007 * Project: Cortex-R DSP Library 00008 * Title: arm_pid_init_q31.c 00009 * 00010 * Description: Q31 PID Control initialization function 00011 * 00012 * Target Processor: Cortex-R4/R5 00013 * 00014 * Version 1.0.0 2011/03/08 00015 * Alpha release. 00016 * 00017 * Version 1.0.1 2011/09/30 00018 * Beta release. 00019 * 00020 * Version 2.0.0 2011/12/15 00021 * Final release. 00022 * 00023 * ------------------------------------------------------------------- */ 00024 #include "arm_math.h" 00025 00044 void arm_pid_init_q31( 00045 arm_pid_instance_q31 * S, 00046 int32_t resetStateFlag) 00047 { 00048 /* Derived coefficient A0 */ 00049 S->A0 = __QADD(__QADD(S->Kp, S->Ki), S->Kd); 00050 00051 /* Derived coefficient A1 */ 00052 S->A1 = -__QADD(__QADD(S->Kd, S->Kd), S->Kp); 00053 00054 /* Derived coefficient A2 */ 00055 S->A2 = S->Kd; 00056 00057 /* Check whether state needs reset or not */ 00058 if(resetStateFlag) 00059 { 00060 /* Clear the state buffer. The size will be always 3 samples */ 00061 memset(S->state, 0, 3u * sizeof(q31_t)); 00062 } 00063 00064 } 00065