From 94f94260ace13688285fc8c62687079b26c18854 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 20 Dec 2020 15:18:02 +0100 Subject: Submodule-cache WIP --- .../DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/cos.c | 11 ----------- .../DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sin.c | 11 ----------- .../RefLibs/src/FastMathFunctions/sqrt.c | 15 --------------- 3 files changed, 37 deletions(-) delete mode 100644 fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/cos.c delete mode 100644 fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sin.c delete mode 100644 fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sqrt.c (limited to 'fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions') diff --git a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/cos.c b/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/cos.c deleted file mode 100644 index ab6c98e..0000000 --- a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/cos.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "ref.h" - -q31_t ref_cos_q31(q31_t x) -{ - return (q31_t)(cosf((float32_t)x * 6.28318530717959f / 2147483648.0f) * 2147483648.0f); -} - -q15_t ref_cos_q15(q15_t x) -{ - return (q15_t)(cosf((float32_t)x * 6.28318530717959f / 32768.0f) * 32768.0f); -} diff --git a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sin.c b/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sin.c deleted file mode 100644 index 3f303a5..0000000 --- a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sin.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "ref.h" - -q31_t ref_sin_q31(q31_t x) -{ - return (q31_t)(sinf((float32_t)x * 6.28318530717959f / 2147483648.0f) * 2147483648.0f); -} - -q15_t ref_sin_q15(q15_t x) -{ - return (q15_t)(sinf((float32_t)x * 6.28318530717959f / 32768.0f) * 32768.0f); -} diff --git a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sqrt.c b/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sqrt.c deleted file mode 100644 index 9dc34af..0000000 --- a/fw/midi-dials/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/RefLibs/src/FastMathFunctions/sqrt.c +++ /dev/null @@ -1,15 +0,0 @@ -#include "ref.h" - -arm_status ref_sqrt_q31(q31_t in, q31_t * pOut) -{ - *pOut = (q31_t)(sqrtf((float32_t)in / 2147483648.0f) * 2147483648.0f); - - return ARM_MATH_SUCCESS; -} - -arm_status ref_sqrt_q15(q15_t in, q15_t * pOut) -{ - *pOut = (q15_t)(sqrtf((float32_t)in / 32768.0f) * 32768.0f); - - return ARM_MATH_SUCCESS; -} -- cgit