From c55e0490dddb3e1e791b9cb165a7a170af478f73 Mon Sep 17 00:00:00 2001 From: Silfurion Date: Thu, 18 Aug 2022 14:53:17 +0200 Subject: [PATCH] Correction of documentation errors for support_functions_f16.h --- Include/dsp/support_functions_f16.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Include/dsp/support_functions_f16.h b/Include/dsp/support_functions_f16.h index c8d580c1..af627054 100755 --- a/Include/dsp/support_functions_f16.h +++ b/Include/dsp/support_functions_f16.h @@ -73,17 +73,17 @@ void arm_f16_to_q15(const float16_t * pSrc, q15_t * pDst, uint32_t blockSize); void arm_q15_to_f16(const q15_t * pSrc, float16_t * pDst, uint32_t blockSize); /** - * @brief Converts the elements of the floating-point vector to Q31 vector. - * @param[in] pSrc points to the f32 input vector + * @brief Converts the elements of the floating-point vector to 16 bit floating-point vector. + * @param[in] pSrc points to the f64 input vector * @param[out] pDst points to the f16 output vector * @param[in] blockSize length of the input vector */ void arm_f64_to_f16(const float64_t * pSrc, float16_t * pDst, uint32_t blockSize); /** - * @brief Converts the elements of the floating-point vector to Q31 vector. - * @param[in] pSrc points to the f32 input vector - * @param[out] pDst points to the f16 output vector + * @brief Converts the elements of the 16 bit floating-point vector to 64 bit floating-point vector. + * @param[in] pSrc points to the f16 input vector + * @param[out] pDst points to the f64 output vector * @param[in] blockSize length of the input vector */ void arm_f16_to_f64(const float16_t * pSrc, float64_t * pDst, uint32_t blockSize);