arm_pid_init_q31.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: arm_pid_init_q31.c
  4. * Description: Q31 PID Control initialization function
  5. *
  6. * $Date: 27. January 2017
  7. * $Revision: V.1.5.1
  8. *
  9. * Target Processor: Cortex-M cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2017 ARM Limited or its affiliates. All rights reserved.
  13. *
  14. * SPDX-License-Identifier: Apache-2.0
  15. *
  16. * Licensed under the Apache License, Version 2.0 (the License); you may
  17. * not use this file except in compliance with the License.
  18. * You may obtain a copy of the License at
  19. *
  20. * www.apache.org/licenses/LICENSE-2.0
  21. *
  22. * Unless required by applicable law or agreed to in writing, software
  23. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  24. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  25. * See the License for the specific language governing permissions and
  26. * limitations under the License.
  27. */
  28. #include "arm_math.h"
  29. /**
  30. * @addtogroup PID
  31. * @{
  32. */
  33. /**
  34. * @brief Initialization function for the Q31 PID Control.
  35. * @param[in,out] *S points to an instance of the Q31 PID structure.
  36. * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state.
  37. * @return none.
  38. * \par Description:
  39. * \par
  40. * The <code>resetStateFlag</code> specifies whether to set state to zero or not. \n
  41. * The function computes the structure fields: <code>A0</code>, <code>A1</code> <code>A2</code>
  42. * using the proportional gain( \c Kp), integral gain( \c Ki) and derivative gain( \c Kd)
  43. * also sets the state variables to all zeros.
  44. */
  45. void arm_pid_init_q31(
  46. arm_pid_instance_q31 * S,
  47. int32_t resetStateFlag)
  48. {
  49. #if defined (ARM_MATH_DSP)
  50. /* Run the below code for Cortex-M4 and Cortex-M3 */
  51. /* Derived coefficient A0 */
  52. S->A0 = __QADD(__QADD(S->Kp, S->Ki), S->Kd);
  53. /* Derived coefficient A1 */
  54. S->A1 = -__QADD(__QADD(S->Kd, S->Kd), S->Kp);
  55. #else
  56. /* Run the below code for Cortex-M0 */
  57. q31_t temp;
  58. /* Derived coefficient A0 */
  59. temp = clip_q63_to_q31((q63_t) S->Kp + S->Ki);
  60. S->A0 = clip_q63_to_q31((q63_t) temp + S->Kd);
  61. /* Derived coefficient A1 */
  62. temp = clip_q63_to_q31((q63_t) S->Kd + S->Kd);
  63. S->A1 = -clip_q63_to_q31((q63_t) temp + S->Kp);
  64. #endif /* #if defined (ARM_MATH_DSP) */
  65. /* Derived coefficient A2 */
  66. S->A2 = S->Kd;
  67. /* Check whether state needs reset or not */
  68. if (resetStateFlag)
  69. {
  70. /* Clear the state buffer. The size will be always 3 samples */
  71. memset(S->state, 0, 3U * sizeof(q31_t));
  72. }
  73. }
  74. /**
  75. * @} end of PID group
  76. */