arm_pid_init_q15.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS DSP Library
  3. * Title: arm_pid_init_q15.c
  4. * Description: Q15 PID Control initialization function
  5. *
  6. * $Date: 18. March 2019
  7. * $Revision: V1.6.0
  8. *
  9. * Target Processor: Cortex-M cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2019 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 Q15 PID Control.
  35. @param[in,out] S points to an instance of the Q15 PID structure
  36. @param[in] resetStateFlag
  37. - value = 0: no change in state
  38. - value = 1: reset state
  39. @return none
  40. @par Details
  41. The <code>resetStateFlag</code> specifies whether to set state to zero or not. \n
  42. The function computes the structure fields: <code>A0</code>, <code>A1</code> <code>A2</code>
  43. using the proportional gain( \c Kp), integral gain( \c Ki) and derivative gain( \c Kd)
  44. also sets the state variables to all zeros.
  45. */
  46. void arm_pid_init_q15(
  47. arm_pid_instance_q15 * S,
  48. int32_t resetStateFlag)
  49. {
  50. #if defined (ARM_MATH_DSP)
  51. /* Derived coefficient A0 */
  52. S->A0 = __QADD16(__QADD16(S->Kp, S->Ki), S->Kd);
  53. /* Derived coefficients and pack into A1 */
  54. #ifndef ARM_MATH_BIG_ENDIAN
  55. S->A1 = __PKHBT(-__QADD16(__QADD16(S->Kd, S->Kd), S->Kp), S->Kd, 16);
  56. #else
  57. S->A1 = __PKHBT(S->Kd, -__QADD16(__QADD16(S->Kd, S->Kd), S->Kp), 16);
  58. #endif
  59. #else
  60. q31_t temp; /* to store the sum */
  61. /* Derived coefficient A0 */
  62. temp = S->Kp + S->Ki + S->Kd;
  63. S->A0 = (q15_t) __SSAT(temp, 16);
  64. /* Derived coefficients and pack into A1 */
  65. temp = -(S->Kd + S->Kd + S->Kp);
  66. S->A1 = (q15_t) __SSAT(temp, 16);
  67. S->A2 = S->Kd;
  68. #endif /* #if defined (ARM_MATH_DSP) */
  69. /* Check whether state needs reset or not */
  70. if (resetStateFlag)
  71. {
  72. /* Reset state to zero, The size will be always 3 samples */
  73. memset(S->state, 0, 3U * sizeof(q15_t));
  74. }
  75. }
  76. /**
  77. @} end of PID group
  78. */