From 34f661bdcd6fde83250c189a186359bd6d183a87 Mon Sep 17 00:00:00 2001 From: Silfurion Date: Thu, 18 Aug 2022 15:04:12 +0200 Subject: [PATCH] Update documentation --- Source/SupportFunctions/arm_float_to_f64.c | 4 ++-- Source/SupportFunctions/arm_q15_to_f64.c | 6 +++--- Source/SupportFunctions/arm_q31_to_f64.c | 6 +++--- Source/SupportFunctions/arm_q7_to_f64.c | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Source/SupportFunctions/arm_float_to_f64.c b/Source/SupportFunctions/arm_float_to_f64.c index 4439a0c3..b0b6d229 100644 --- a/Source/SupportFunctions/arm_float_to_f64.c +++ b/Source/SupportFunctions/arm_float_to_f64.c @@ -36,7 +36,7 @@ */ /** - @addtogroup f64_to_x + @addtogroup float_to_x @{ */ @@ -77,7 +77,7 @@ void arm_float_to_f64( /** - @} end of f64_to_x group + @} end of float_to_x group */ diff --git a/Source/SupportFunctions/arm_q15_to_f64.c b/Source/SupportFunctions/arm_q15_to_f64.c index ba563ec3..1386cd71 100644 --- a/Source/SupportFunctions/arm_q15_to_f64.c +++ b/Source/SupportFunctions/arm_q15_to_f64.c @@ -51,7 +51,7 @@ @par Details The equation used for the conversion process is:
-      pDst[n] = (float32_t) pSrc[n] / 32768;   0 <= n < blockSize.
+      pDst[n] = (float64_t) pSrc[n] / 32768;   0 <= n < blockSize.
   
*/ @@ -70,7 +70,7 @@ void arm_q15_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 32768 */ + /* C = (float64_t) A / 32768 */ /* Convert from q15 to float and store result in destination buffer */ *pDst++ = ((float64_t) * pIn++ / 32768.0f); @@ -94,7 +94,7 @@ void arm_q15_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 32768 */ + /* C = (float64_t) A / 32768 */ /* Convert from q15 to float and store result in destination buffer */ *pDst++ = ((float64_t) *pIn++ / 32768.0f); diff --git a/Source/SupportFunctions/arm_q31_to_f64.c b/Source/SupportFunctions/arm_q31_to_f64.c index 47f6ad08..275d9d30 100644 --- a/Source/SupportFunctions/arm_q31_to_f64.c +++ b/Source/SupportFunctions/arm_q31_to_f64.c @@ -51,7 +51,7 @@ @par Details The equation used for the conversion process is:
-      pDst[n] = (float32_t) pSrc[n] / 2147483648;   0 <= n < blockSize.
+      pDst[n] = (float64_t) pSrc[n] / 2147483648;   0 <= n < blockSize.
   
*/ @@ -70,7 +70,7 @@ void arm_q31_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 2147483648 */ + /* C = (float64_t) A / 2147483648 */ /* Convert from q31 to float and store result in destination buffer */ *pDst++ = ((float64_t) *pIn++ / 2147483648.0f); @@ -94,7 +94,7 @@ void arm_q31_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 2147483648 */ + /* C = (float64_t) A / 2147483648 */ /* Convert from q31 to float and store result in destination buffer */ *pDst++ = ((float64_t) *pIn++ / 2147483648.0f); diff --git a/Source/SupportFunctions/arm_q7_to_f64.c b/Source/SupportFunctions/arm_q7_to_f64.c index ab993896..c8986cfd 100644 --- a/Source/SupportFunctions/arm_q7_to_f64.c +++ b/Source/SupportFunctions/arm_q7_to_f64.c @@ -51,7 +51,7 @@ @par Details The equation used for the conversion process is:
-      pDst[n] = (float32_t) pSrc[n] / 128;   0 <= n < blockSize.
+      pDst[n] = (float64_t) pSrc[n] / 128;   0 <= n < blockSize.
   
*/ void arm_q7_to_f64( @@ -69,7 +69,7 @@ void arm_q7_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 128 */ + /* C = (float64_t) A / 128 */ /* Convert from q7 to float and store result in destination buffer */ *pDst++ = ((float64_t) * pIn++ / 128.0f); @@ -93,7 +93,7 @@ void arm_q7_to_f64( while (blkCnt > 0U) { - /* C = (float32_t) A / 128 */ + /* C = (float64_t) A / 128 */ /* Convert from q7 to float and store result in destination buffer */ *pDst++ = ((float64_t) * pIn++ / 128.0f); @@ -108,4 +108,4 @@ void arm_q7_to_f64( /** @} end of q7_to_x group */ - \ No newline at end of file +