code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_std_f32.c * Description: Standard deviation of the elements of a floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_std_f32.c
C
apache-2.0
5,339
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_std_q15.c * Description: Standard deviation of an array of Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_std_q15.c
C
apache-2.0
5,161
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_std_q31.c * Description: Standard deviation of the elements of a Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_std_q31.c
C
apache-2.0
4,907
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_var_f32.c * Description: Variance of the elements of a floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_var_f32.c
C
apache-2.0
5,862
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_var_q15.c * Description: Variance of an array of Q15 type * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_var_q15.c
C
apache-2.0
5,177
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_var_q31.c * Description: Variance of an array of Q31 type * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/StatisticsFunctions/arm_var_q31.c
C
apache-2.0
4,867
cmake_minimum_required (VERSION 3.6) project(CMSISDSPSupport) file(GLOB SRC "./*_*.c") add_library(CMSISDSPSupport STATIC ${SRC}) configdsp(CMSISDSPSupport ..) ### Includes target_include_directories(CMSISDSPSupport PUBLIC "${DSP}/../../Include")
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/CMakeLists.txt
CMake
apache-2.0
256
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: SupportFunctions.c * Description: Combination of all support function source files. * * $Date: 18. March 2019 * $Revision: V1.0.0 * * Target Processor: Cortex-M cores * -------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/SupportFunctions.c
C
apache-2.0
1,600
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_copy_f32.c * Description: Copies the elements of a floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * --------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_copy_f32.c
C
apache-2.0
3,585
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_copy_q15.c * Description: Copies the elements of a Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_copy_q15.c
C
apache-2.0
2,336
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_copy_q31.c * Description: Copies the elements of a Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_copy_q31.c
C
apache-2.0
2,315
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_copy_q7.c * Description: Copies the elements of a Q7 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_copy_q7.c
C
apache-2.0
2,257
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_fill_f32.c * Description: Fills a constant value into a floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_fill_f32.c
C
apache-2.0
3,478
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_fill_q15.c * Description: Fills a constant value into a Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * --------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_fill_q15.c
C
apache-2.0
2,472
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_fill_q31.c * Description: Fills a constant value into a Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * --------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_fill_q31.c
C
apache-2.0
2,279
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_fill_q7.c * Description: Fills a constant value into a Q7 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_fill_q7.c
C
apache-2.0
2,426
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_float_to_q15.c * Description: Converts the elements of the floating-point vector to Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M c...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_float_to_q15.c
C
apache-2.0
6,508
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_float_to_q31.c * Description: Converts the elements of the floating-point vector to Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M c...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_float_to_q31.c
C
apache-2.0
6,683
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_float_to_q7.c * Description: Converts the elements of the floating-point vector to Q7 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cor...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_float_to_q7.c
C
apache-2.0
6,511
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q15_to_float.c * Description: Converts the elements of the Q15 vector to floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M c...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q15_to_float.c
C
apache-2.0
4,357
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q15_to_q31.c * Description: Converts the elements of the Q15 vector to Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q15_to_q31.c
C
apache-2.0
3,566
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q15_to_q7.c * Description: Converts the elements of the Q15 vector to Q7 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q15_to_q7.c
C
apache-2.0
3,719
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q31_to_float.c * Description: Converts the elements of the Q31 vector to floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M c...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q31_to_float.c
C
apache-2.0
4,180
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q31_to_q15.c * Description: Converts the elements of the Q31 vector to Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q31_to_q15.c
C
apache-2.0
3,394
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q31_to_q7.c * Description: Converts the elements of the Q31 vector to Q7 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q31_to_q7.c
C
apache-2.0
2,840
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q7_to_float.c * Description: Converts the elements of the Q7 vector to floating-point vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cor...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q7_to_float.c
C
apache-2.0
4,688
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q7_to_q15.c * Description: Converts the elements of the Q7 vector to Q15 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q7_to_q15.c
C
apache-2.0
3,531
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_q7_to_q31.c * Description: Converts the elements of the Q7 vector to Q31 vector * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/SupportFunctions/arm_q7_to_q31.c
C
apache-2.0
3,074
cmake_minimum_required (VERSION 3.6) project(CMSISDSPTransform) add_library(CMSISDSPTransform STATIC) include(fft) fft(CMSISDSPTransform) if (CONFIGTABLE AND ALLFFT) target_compile_definitions(CMSISDSPTransform PUBLIC ARM_ALL_FFT_TABLES) endif() target_sources(CMSISDSPTransform PRIVATE arm_bitreversal.c) targe...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/CMakeLists.txt
CMake
apache-2.0
5,110
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: TransformFunctions.c * Description: Combination of all transform function source files. * * $Date: 18. March 2019 * $Revision: V1.0.0 * * Target Processor: Cortex-M cores * ---...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/TransformFunctions.c
C
apache-2.0
2,061
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_bitreversal.c * Description: Bitreversal functions * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ------------------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_bitreversal.c
C
apache-2.0
7,037
;/* ---------------------------------------------------------------------- ; * Project: CMSIS DSP Library ; * Title: arm_bitreversal2.S ; * Description: arm_bitreversal_32 function done in assembly for maximum speed. ; * Called after doing an fft to reorder the output. ; * The f...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_bitreversal2.S
Unix Assembly
apache-2.0
5,313
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_bitreversal2.c * Description: Bitreversal functions * * $Date: 18. March 2019 * $Revision: V1.0.0 * * Target Processor: Cortex-M cores * -----------------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_bitreversal2.c
C
apache-2.0
2,480
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_f32.c * Description: Combined Radix Decimation in Frequency CFFT Floating point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: ...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_f32.c
C
apache-2.0
19,277
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_q15.c * Description: Combined Radix Decimation in Q15 Frequency CFFT processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M co...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_q15.c
C
apache-2.0
8,348
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_q31.c * Description: Combined Radix Decimation in Frequency CFFT fixed point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cor...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_q31.c
C
apache-2.0
6,226
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_f32.c * Description: Radix-2 Decimation in Frequency CFFT & CIFFT Floating point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Pro...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_f32.c
C
apache-2.0
11,553
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_init_f32.c * Description: Radix-2 Decimation in Frequency Floating-point CFFT & CIFFT Initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * T...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_init_f32.c
C
apache-2.0
6,761
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_init_q15.c * Description: Radix-2 Decimation in Frequency Q15 FFT & IFFT initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Process...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_init_q15.c
C
apache-2.0
5,965
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_init_q31.c * Description: Radix-2 Decimation in Frequency Fixed-point CFFT & CIFFT Initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Targ...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_init_q31.c
C
apache-2.0
6,268
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_q15.c * Description: Radix-2 Decimation in Frequency CFFT & CIFFT Fixed point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Proces...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_q15.c
C
apache-2.0
16,171
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix2_q31.c * Description: Radix-2 Decimation in Frequency CFFT & CIFFT Fixed point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Proces...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix2_q31.c
C
apache-2.0
8,580
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_f32.c * Description: Radix-4 Decimation in Frequency CFFT & CIFFT Floating point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Pro...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_f32.c
C
apache-2.0
34,024
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_init_f32.c * Description: Radix-4 Decimation in Frequency Floating-point CFFT & CIFFT Initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * T...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_init_f32.c
C
apache-2.0
5,392
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_init_q15.c * Description: Radix-4 Decimation in Frequency Q15 FFT & IFFT initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Process...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_init_q15.c
C
apache-2.0
4,941
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_init_q31.c * Description: Radix-4 Decimation in Frequency Q31 FFT & IFFT initialization function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Process...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_init_q31.c
C
apache-2.0
5,102
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_q15.c * Description: This file has function definition of Radix-4 FFT & IFFT function and * In-place bit reversal using bit reversal table * * $Date: 18...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_q15.c
C
apache-2.0
54,403
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix4_q31.c * Description: This file has function definition of Radix-4 FFT & IFFT function and * In-place bit reversal using bit reversal table * * $Date: 18...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix4_q31.c
C
apache-2.0
24,328
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_radix8_f32.c * Description: Radix-8 Decimation in Frequency CFFT & CIFFT Floating point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Pro...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_cfft_radix8_f32.c
C
apache-2.0
8,775
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_f32.c * Description: Processing function of DCT4 & IDCT4 F32 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_f32.c
C
apache-2.0
16,858
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_init_f32.c * Description: Initialization function of DCT-4 & IDCT4 F32 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_init_f32.c
C
apache-2.0
3,956
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_init_q15.c * Description: Initialization function of DCT-4 & IDCT4 Q15 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_init_q15.c
C
apache-2.0
3,918
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_init_q31.c * Description: Initialization function of DCT-4 & IDCT4 Q31 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * -----------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_init_q31.c
C
apache-2.0
3,928
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_q15.c * Description: Processing function of DCT4 & IDCT4 Q15 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_q15.c
C
apache-2.0
12,368
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_dct4_q31.c * Description: Processing function of DCT4 & IDCT4 Q31 * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_dct4_q31.c
C
apache-2.0
12,570
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_f32.c * Description: RFFT & RIFFT Floating point process function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_f32.c
C
apache-2.0
9,326
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_f32.c * Description: RFFT & RIFFT Floating point process function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_fast_f32.c
C
apache-2.0
12,298
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_cfft_init_f32.c * Description: Split Radix Decimation in Frequency CFFT Floating point processing function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_fast_init_f32.c
C
apache-2.0
13,311
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_init_f32.c * Description: RFFT & RIFFT Floating point initialisation function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_init_f32.c
C
apache-2.0
4,716
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_init_q15.c * Description: RFFT & RIFFT Q15 initialisation function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_init_q15.c
C
apache-2.0
6,246
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_init_q31.c * Description: RFFT & RIFFT Q31 initialisation function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_init_q31.c
C
apache-2.0
6,246
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_q15.c * Description: RFFT & RIFFT Q15 process function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ---------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_q15.c
C
apache-2.0
12,320
/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_rfft_q31.c * Description: FFT & RIFFT Q31 process function * * $Date: 18. March 2019 * $Revision: V1.6.0 * * Target Processor: Cortex-M cores * ----------------------------...
YifuLiu/AliOS-Things
components/cmsis/DSP/Source/TransformFunctions/arm_rfft_q31.c
C
apache-2.0
9,226
# Setting Linux is forcing th extension to be .o instead of .obj when building on WIndows. # It is important because armlink is failing when files have .obj extensions (error with # scatter file section not found) SET(CMAKE_SYSTEM_NAME Linux) SET(CMAKE_SYSTEM_PROCESSOR arm) SET(tools "C:/PROGRA~1/ARM/DEVELO~1.0/sw/A...
YifuLiu/AliOS-Things
components/cmsis/DSP/armcc.cmake
CMake
apache-2.0
2,031
include(CMakePrintHelpers) cmake_policy(SET CMP0077 NEW) SET(CORTEXM ON) option(FASTMATHCOMPUTATIONS "Fast Math enabled" ON) option(NEON "Neon acceleration" OFF) option(NEONEXPERIMENTAL "Neon experimental acceleration" OFF) option(LOOPUNROLL "Loop unrolling" ON) option(ROUNDING "Rounding" OFF) option(MATRIXCHECK "Matr...
YifuLiu/AliOS-Things
components/cmsis/DSP/config.cmake
CMake
apache-2.0
3,721
include(CMakePrintHelpers) include(configUtils) enable_language(C ASM) option(FILEIO "Test trace using printf" ON) # Otherwise there is a .obj on windows and it creates problems # with armlink. SET(CMAKE_C_OUTPUT_EXTENSION .o) SET(CMAKE_CXX_OUTPUT_EXTENSION .o) SET(CMAKE_ASM_OUTPUT_EXTENSION .o) get_filename_comp...
YifuLiu/AliOS-Things
components/cmsis/DSP/configBoot.cmake
CMake
apache-2.0
2,325
function(cortexm CORE) target_sources(${PROJECT_NAME} PRIVATE ${ROOT}/Device/ARM/${CORE}/Source/ARM/startup_${CORE}.s) target_sources(${PROJECT_NAME} PRIVATE ${ROOT}/Device/ARM/${CORE}/Source/system_${CORE}.c) target_include_directories(${PROJECT_NAME} PRIVATE ${ROOT}/Device/ARM/${CORE}/Include) target_...
YifuLiu/AliOS-Things
components/cmsis/DSP/configUtils.cmake
CMake
apache-2.0
2,543
function(fft PROJECT) ####################################### # # CFFT F32 # if (CONFIGTABLE AND CFFT_F32_16) target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_TWIDDLECOEF_F32_16) target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_BITREVIDX_FLT_16) endif() if (CONFIGTABLE AND CFFT_F32_32) target...
YifuLiu/AliOS-Things
components/cmsis/DSP/fft.cmake
CMake
apache-2.0
21,167
function(interpol PROJECT) if (CONFIGTABLE AND ARM_COS_F32) target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_F32) endif() if (CONFIGTABLE AND ARM_COS_Q31) target_compile_definitions(${PROJECT} PUBLIC ARM_TABLE_SIN_Q31) endif() if (CONFIGTABLE AND ARM_COS_Q15) target_compile_definitions(${PROJ...
YifuLiu/AliOS-Things
components/cmsis/DSP/interpol.cmake
CMake
apache-2.0
1,168
/** ****************************************************************************** * @file partition_stm32u575xx.h * @author MCD Application Team * @brief CMSIS STM32U575xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * *...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u575xx.h
C
apache-2.0
21,899
/** ****************************************************************************** * @file partition_stm32u585xx.h * @author MCD Application Team * @brief CMSIS STM32U585xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u585xx.h
C
apache-2.0
22,270
/** ****************************************************************************** * @file partition_stm32u595xx.h * @author MCD Application Team * @brief CMSIS STM32U599xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * *...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u595xx.h
C
apache-2.0
22,627
/** ****************************************************************************** * @file partition_stm32u599xx.h * @author MCD Application Team * @brief CMSIS STM32U599xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * *...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u599xx.h
C
apache-2.0
23,148
/** ****************************************************************************** * @file partition_stm32u5a5xx.h * @author MCD Application Team * @brief CMSIS STM32U5A5xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * *...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u5a5xx.h
C
apache-2.0
22,997
/** ****************************************************************************** * @file partition_stm32u5a9xx.h * @author MCD Application Team * @brief CMSIS STM32U5A9xx Device Initial Setup for Secure / Non-Secure Zones * for ARMCM33 based on CMSIS CORE partition_ARMCM33.h Template. * *...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/Templates/partition_stm32u5a9xx.h
C
apache-2.0
23,515
/** ****************************************************************************** * @file partition_stm32u5xx.h * @author MCD Application Team * @brief CMSIS STM32U5xx Device Header File for Initial Setup for * Secure / Non-Secure Zones based on CMSIS CORE V5.4.0 * * The file is i...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/partition_stm32u5xx.h
C
apache-2.0
1,940
/** ****************************************************************************** * @file stm32u5xx.h * @author MCD Application Team * @brief CMSIS STM32U5xx Device Peripheral Access Layer Header File. * * The file is the unique include file that the application programmer * is us...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/stm32u5xx.h
C
apache-2.0
8,644
/** ****************************************************************************** * @file system_stm32u5xx.h * @author MCD Application Team * @brief CMSIS Cortex-M33 Device System Source File for STM32U5xx devices. ****************************************************************************** * @atte...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Include/system_stm32u5xx.h
C
apache-2.0
2,713
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta charset="utf-8" /> <meta name="generator" content="pandoc" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> <title>Release Notes for STM32U5xx CMSIS</title> <style typ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Release_Notes.html
HTML
apache-2.0
3,981
;******************************************************************************* ;* File Name : startup_stm32u575xx.s ;* Author : MCD Application Team ;* Description : STM32U575xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u575xx.s
Unix Assembly
apache-2.0
26,326
;******************************************************************************* ;* File Name : startup_stm32u585xx.s ;* Author : MCD Application Team ;* Description : STM32U585xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u585xx.s
Unix Assembly
apache-2.0
26,783
;******************************************************************************* ;* File Name : startup_stm32u595xx.s ;* Author : MCD Application Team ;* Description : STM32U595xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u595xx.s
Unix Assembly
apache-2.0
27,270
;******************************************************************************* ;* File Name : startup_stm32u599xx.s ;* Author : MCD Application Team ;* Description : STM32U599xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u599xx.s
Unix Assembly
apache-2.0
28,168
;******************************************************************************* ;* File Name : startup_stm32u5a5xx.s ;* Author : MCD Application Team ;* Description : STM32U5A5xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u5a5xx.s
Unix Assembly
apache-2.0
27,831
;******************************************************************************* ;* File Name : startup_stm32u5a9xx.s ;* Author : MCD Application Team ;* Description : STM32U5A9xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/arm/startup_stm32u5a9xx.s
Unix Assembly
apache-2.0
28,597
/** ****************************************************************************** * @file startup_stm32u575xx.s * @author MCD Application Team * @brief STM32U575xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u575xx.s
Unix Assembly
apache-2.0
17,313
/** ****************************************************************************** * @file startup_stm32u585xx.s * @author MCD Application Team * @brief STM32U585xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u585xx.s
Unix Assembly
apache-2.0
17,735
/** ****************************************************************************** * @file startup_stm32u595xx.s * @author MCD Application Team * @brief STM32U595xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u595xx.s
Unix Assembly
apache-2.0
17,921
/** ****************************************************************************** * @file startup_stm32u599xx.s * @author MCD Application Team * @brief STM32U599xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u599xx.s
Unix Assembly
apache-2.0
18,601
/** ****************************************************************************** * @file startup_stm32u5a5xx.s * @author MCD Application Team * @brief STM32U5a5xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u5a5xx.s
Unix Assembly
apache-2.0
18,343
/** ****************************************************************************** * @file startup_stm32u5a9xx.s * @author MCD Application Team * @brief STM32U5A9xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/gcc/startup_stm32u5a9xx.s
Unix Assembly
apache-2.0
19,023
;******************************************************************************** ;* File Name : startup_stm32u575xx.s ;* Author : MCD Application Team ;* Description : STM32U575xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u575xx.s
Unix Assembly
apache-2.0
30,204
;******************************************************************************** ;* File Name : startup_stm32u585xx.s ;* Author : MCD Application Team ;* Description : STM32U585xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u585xx.s
Unix Assembly
apache-2.0
30,890
;******************************************************************************** ;* File Name : startup_stm32u595xx.s ;* Author : MCD Application Team ;* Description : STM32U595xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u595xx.s
Unix Assembly
apache-2.0
31,483
;******************************************************************************** ;* File Name : startup_stm32u599xx.s ;* Author : MCD Application Team ;* Description : STM32U599xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u599xx.s
Unix Assembly
apache-2.0
32,902
;******************************************************************************** ;* File Name : startup_stm32u5a5xx.s ;* Author : MCD Application Team ;* Description : STM32U5A5xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u5a5xx.s
Unix Assembly
apache-2.0
32,170
;******************************************************************************** ;* File Name : startup_stm32u5a9xx.s ;* Author : MCD Application Team ;* Description : STM32U5A9xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/iar/startup_stm32u5a9xx.s
Unix Assembly
apache-2.0
33,589
/** ****************************************************************************** * @file system_stm32u5xx.c * @author MCD Application Team * @brief CMSIS Cortex-M33 Device Peripheral Access Layer System Source File * * This file provides two functions and one global variable to be called from * ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/system_stm32u5xx.c
C
apache-2.0
13,716
/** ****************************************************************************** * @file system_stm32u5xx_ns.c * @author MCD Application Team * @brief CMSIS Cortex-M33 Device Peripheral Access Layer System Source File * to be used in non-secure application when the system implements * ...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/system_stm32u5xx_ns.c
C
apache-2.0
7,014
/** ****************************************************************************** * @file system_stm32u5xx_s.c * @author MCD Application Team * @brief CMSIS Cortex-M33 Device Peripheral Access Layer System Source File * to be used in secure application when the system implements * t...
YifuLiu/AliOS-Things
components/cmsis/Device/ST/STM32U5xx/Source/Templates/system_stm32u5xx_s.c
C
apache-2.0
15,538