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 |
|---|---|---|---|---|---|
#include "mat_helper.c"
#include "ref_helper.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/HelperFunctions/HelperFunctions.c | C | apache-2.0 | 50 |
#include "ref.h"
float32_t ref_detrm(float32_t *pSrc, float32_t *temp, uint32_t size)
{
float32_t s = 1, det = 0;
int i, j, m, n, c;
if ( size == 1 )
{
return ( pSrc[ 0 ] );
}
else
{
det = 0;
for ( c = 0;c < size;c++ )
{
m = 0;
n = 0;
for ( i =... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/HelperFunctions/mat_helper.c | C | apache-2.0 | 3,723 |
#include "ref.h"
float32_t scratchArray[8192*2];
arm_cfft_instance_f32 ref_cfft_sR_f32_len8192 = { 8192, 0, 0, 0 };
q31_t ref_sat_n(q31_t num, uint32_t bits)
{
int32_t posMax, negMin;
uint32_t i;
posMax = 1;
for (i = 0; i < (bits - 1); i++)
{
posMax = posMax * 2;
}
if (num > 0)
{
posMax = (posMax - 1... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/HelperFunctions/ref_helper.c | C | apache-2.0 | 1,173 |
#include "intrinsics.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/Intrinsics/Intrinsics_.c | C | apache-2.0 | 26 |
#include "ref.h"
q31_t ref__QADD8(q31_t x, q31_t y)
{
q31_t sum;
q7_t r, s, t, u;
r = (q7_t) x;
s = (q7_t) y;
r = ref_sat_n((q31_t) (r + s), 8);
s = ref_sat_n(((q31_t) (((x << 16) >> 24) + ((y << 16) >> 24))), 8);
t = ref_sat_n(((q31_t) (((x << 8) >> 24) + ((y << 8) >> 24))), 8);
u = ref_sat_... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/Intrinsics/intrinsics.c | C | apache-2.0 | 4,901 |
#include "mat_add.c"
#include "mat_cmplx_mult.c"
#include "mat_inverse.c"
#include "mat_mult.c"
#include "mat_scale.c"
#include "mat_sub.c"
#include "mat_trans.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/MatrixFunctions.c | C | apache-2.0 | 165 |
#include "ref.h"
arm_status ref_mat_add_f32(
const arm_matrix_instance_f32 * pSrcA,
const arm_matrix_instance_f32 * pSrcB,
arm_matrix_instance_f32 * pDst)
{
uint32_t i;
uint32_t numSamples; /* total number of elements in the matrix */
/* Total number of samples in the input matrix... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_add.c | C | apache-2.0 | 1,511 |
#include "ref.h"
arm_status ref_mat_cmplx_mult_f32(
const arm_matrix_instance_f32 * pSrcA,
const arm_matrix_instance_f32 * pSrcB,
arm_matrix_instance_f32 * pDst)
{
uint32_t r,c,i,outR,outC,innerSize;
float32_t sumR,sumI;
float32_t a0,b0,c0,d0;
outR = pSrcA->numRows;
outC = pSrcB->numCols;
innerSize = pSr... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_cmplx_mult.c | C | apache-2.0 | 2,575 |
#include "ref.h"
arm_status ref_mat_inverse_f32(
const arm_matrix_instance_f32 * pSrc,
arm_matrix_instance_f32 * pDst)
{
float32_t det;
uint32_t i, size;
arm_matrix_instance_f32 tmp;
tmp.numCols = pSrc->numCols;
tmp.numRows = pSrc->numRows;
tmp.pData = scratchArray;
det = ref_detrm(pSrc->pData,scratchAr... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_inverse.c | C | apache-2.0 | 1,183 |
#include "ref.h"
arm_status ref_mat_mult_f32(
const arm_matrix_instance_f32 * pSrcA,
const arm_matrix_instance_f32 * pSrcB,
arm_matrix_instance_f32 * pDst)
{
uint32_t r,c,i,outR,outC,innerSize;
float32_t sum;
outR = pSrcA->numRows;
outC = pSrcB->numCols;
innerSize = pSrcA->numCols;
for(r=0;r<outR;r++)
... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_mult.c | C | apache-2.0 | 1,655 |
#include "ref.h"
arm_status ref_mat_scale_f32(
const arm_matrix_instance_f32 * pSrc,
float32_t scale,
arm_matrix_instance_f32 * pDst)
{
uint32_t i;
uint32_t numSamples; /* total number of elements in the matrix */
/* Total number of samples in the input matrix */
numSamples = (ui... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_scale.c | C | apache-2.0 | 1,565 |
#include "ref.h"
arm_status ref_mat_sub_f32(
const arm_matrix_instance_f32 * pSrcA,
const arm_matrix_instance_f32 * pSrcB,
arm_matrix_instance_f32 * pDst)
{
uint32_t i;
uint32_t numSamples; /* total number of elements in the matrix */
/* Total number of samples in the input matrix... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_sub.c | C | apache-2.0 | 1,511 |
#include "ref.h"
arm_status ref_mat_trans_f64(
const arm_matrix_instance_f64 * pSrc,
arm_matrix_instance_f64 * pDst)
{
uint64_t r,c;
uint64_t numR = pSrc->numRows;
uint64_t numC = pSrc->numCols;
for(r=0;r<numR;r++)
{
for(c=0;c<numC;c++)
{
pDst->pData[c*numR + r] = pSrc->pData[r*numC + c];
}
}
r... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/MatrixFunctions/mat_trans.c | C | apache-2.0 | 1,333 |
#include "max.c"
#include "mean.c"
#include "min.c"
#include "power.c"
#include "rms.c"
#include "std.c"
#include "var.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/StatisticsFunctions.c | C | apache-2.0 | 123 |
#include "ref.h"
void ref_max_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult,
uint32_t * pIndex)
{
uint32_t i, ind=0;
float32_t max=-FLT_MAX;
for(i=0;i<blockSize;i++)
{
if (max < pSrc[i])
{
max = pSrc[i];
ind = i;
}
}
*pResult = max;
*pIndex = ind;
}
void ref_max_q31(
q3... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/max.c | C | apache-2.0 | 1,097 |
#include "ref.h"
void ref_mean_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult)
{
uint32_t i;
float32_t sum=0;
for(i=0;i<blockSize;i++)
{
sum += pSrc[i];
}
*pResult = sum / (float32_t)blockSize;
}
void ref_mean_q31(
q31_t * pSrc,
uint32_t blockSize,
q31_t * pResult)
{
uint32_t i... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/mean.c | C | apache-2.0 | 856 |
#include "ref.h"
void ref_min_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult,
uint32_t * pIndex)
{
uint32_t i, ind=0;
float32_t min=FLT_MAX;
for(i=0;i<blockSize;i++)
{
if (min > pSrc[i])
{
min = pSrc[i];
ind = i;
}
}
*pResult = min;
*pIndex = ind;
}
void ref_min_q31(
q31... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/min.c | C | apache-2.0 | 1,096 |
#include "ref.h"
void ref_power_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult)
{
uint32_t i;
float32_t sumsq=0;
for(i=0;i<blockSize;i++)
{
sumsq += pSrc[i] * pSrc[i];
}
*pResult = sumsq;
}
void ref_power_q31(
q31_t * pSrc,
uint32_t blockSize,
q63_t * pResult)
{
uint32_t i;
q6... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/power.c | C | apache-2.0 | 836 |
#include "ref.h"
void ref_rms_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult)
{
uint32_t i;
float32_t sumsq=0;
for(i=0;i<blockSize;i++)
{
sumsq += pSrc[i] * pSrc[i];
}
*pResult = sqrtf(sumsq / (float32_t)blockSize);
}
void ref_rms_q31(
q31_t * pSrc,
uint32_t blockSize,
q31_t * p... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/rms.c | C | apache-2.0 | 1,361 |
#include "ref.h"
void ref_std_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult)
{
uint32_t i;
float32_t sum=0, sumsq=0;
if (blockSize == 1)
{
*pResult = 0;
return;
}
for(i=0;i<blockSize;i++)
{
sum += pSrc[i];
sumsq += pSrc[i] * pSrc[i];
}
*pResult = sqrtf((sumsq - sum * sum /... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/std.c | C | apache-2.0 | 1,308 |
#include "ref.h"
void ref_var_f32(
float32_t * pSrc,
uint32_t blockSize,
float32_t * pResult)
{
uint32_t i;
float32_t sum=0, sumsq=0;
if (blockSize == 1)
{
*pResult = 0;
return;
}
for(i=0;i<blockSize;i++)
{
sum += pSrc[i];
sumsq += pSrc[i] * pSrc[i];
}
*pResult = (sumsq - sum * sum / (floa... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/StatisticsFunctions/var.c | C | apache-2.0 | 1,100 |
#include "copy.c"
#include "fill.c"
#include "fixed_to_fixed.c"
#include "fixed_to_float.c"
#include "float_to_fixed.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/SupportFunctions.c | C | apache-2.0 | 121 |
#include "ref.h"
void ref_copy_f32(
float32_t * pSrc,
float32_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = pSrc[i];
}
}
void ref_copy_q31(
q31_t * pSrc,
q31_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = pSrc[i];
}
}
vo... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/copy.c | C | apache-2.0 | 606 |
#include "ref.h"
void ref_fill_f32(
float32_t value,
float32_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = value;
}
}
void ref_fill_q31(
q31_t value,
q31_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = value;
}
}
void ref... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/fill.c | C | apache-2.0 | 594 |
#include "ref.h"
void ref_q31_to_q15(
q31_t * pSrc,
q15_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = pSrc[i] >> 16;
}
}
void ref_q31_to_q7(
q31_t * pSrc,
q7_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = pSrc[i] >> 24;
}... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/fixed_to_fixed.c | C | apache-2.0 | 958 |
#include "ref.h"
void ref_q63_to_float(
q63_t * pSrc,
float32_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<blockSize;i++)
{
pDst[i] = ((float32_t)pSrc[i]) / 9223372036854775808.0f;
}
}
void ref_q31_to_float(
q31_t * pSrc,
float32_t * pDst,
uint32_t blockSize)
{
uint32_t i;
for(i=0;i<b... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/fixed_to_float.c | C | apache-2.0 | 746 |
#include "ref.h"
void ref_float_to_q31(
float32_t * pSrc,
q31_t * pDst,
uint32_t blockSize)
{
uint32_t i;
float32_t in;
for(i=0;i<blockSize;i++)
{
in = pSrc[i];
in *= 2147483648.0f; //scale up
in += in > 0.0f ? 0.5f : -0.5f; //round
pDst[i] = ref_sat_q31((q63_t)in); //cast and saturate
}
}
v... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/SupportFunctions/float_to_fixed.c | C | apache-2.0 | 818 |
#include "cfft.c"
#include "dct4.c"
#include "rfft.c"
| YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/TransformFunctions/TransformFunctions.c | C | apache-2.0 | 55 |
#include "ref.h"
;/*
;* @brief In-place bit reversal function.
;* @param[in, out] *pSrc points to the in-place buffer of unknown 32-bit data type.
;* @param[in] bitRevLen bit reversal table length
;* @param[in] *pBitRevTab points to bit reversal table.
;* @return none.
;*/
void ref... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/TransformFunctions/bitreversal.c | C | apache-2.0 | 657 |
#include "ref.h"
#include "arm_const_structs.h"
void ref_cfft_f32(
const arm_cfft_instance_f32 * S,
float32_t * p1,
uint8_t ifftFlag,
uint8_t bitReverseFlag)
{
int n, mmax, m, j, istep, i;
float32_t wtemp, wr, wpr, wpi, wi, theta;
float32_t tempr, tempi;
float32_t * data = p1;
uint32_t N = S->fftL... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/TransformFunctions/cfft.c | C | apache-2.0 | 13,641 |
#include "ref.h"
void ref_dct4_f32(
const arm_dct4_instance_f32 * S,
float32_t * pState,
float32_t * pInlineBuffer)
{
uint32_t n,k;
float32_t sum;
float32_t pi_by_N = 3.14159265358979f / (float32_t)S->N;
float32_t tmp;
float32_t normalize = sqrtf(2.0f / (float32_t)S->N);
for(k=0;k<S->N;k++)
{
su... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/TransformFunctions/dct4.c | C | apache-2.0 | 1,808 |
#include "ref.h"
#include "arm_const_structs.h"
void ref_rfft_f32(
arm_rfft_instance_f32 * S,
float32_t * pSrc,
float32_t * pDst)
{
uint32_t i;
if (S->ifftFlagR)
{
for(i=0;i<S->fftLenReal*2;i++)
{
pDst[i] = pSrc[i];
}
}
else
{
for(i=0;i<S->fftLenReal;i++)
{
pDst[2*i+0] = pSrc[i];
pDst... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/RefLibs/src/TransformFunctions/rfft.c | C | apache-2.0 | 6,134 |
@echo off
set UVEXE=C:\Keil_v5\UV4\UV4.EXE
set CURDIR=%CD%
if .%1==. goto help
for %%a in (ARM GCC) do if %1==%%a goto startBuild
goto help
:startBuild
echo.
echo Building DSP Libraries %1
if %1==ARM goto buildARM
if %1==GCC goto buildGCC
goto err
:buildARM
:buildGCC
cd ..\Projects\%1... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/buildDspLibs.bat | Batchfile | apache-2.0 | 4,301 |
@echo off
set UVEXE=C:\Keil_v5\UV4\UV4.EXE
set CURDIR=%CD%
if .%1==. goto help
for %%a in (ARM ARMCLANG GCC) do if %1==%%a goto startBuild
goto help
:startBuild
echo.
echo Building DSP Reference Libraries %1
if %1==ARM goto buildARM
if %1==ARMCLANG goto buildARMCLANG
if %1==GCC ... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/buildRefLibs.bat | Batchfile | apache-2.0 | 4,422 |
#!/usr/bin/python3
import sys
import os
error = 1
def parseLog(filename):
inFileName = filename
outFileName = os.path.splitext(inFileName)[0] + '_parsed' + os.path.splitext(inFileName)[1]
infile = open(inFileName).read()
infile = infile.split('\n')
outfile = open(outFileName, 'w')
... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/log2txt.py | Python | apache-2.0 | 3,228 |
#!/usr/bin/python3
import sys
toolchain_list = ["ARM", "GCC", "ARMCLANG"]
core_list = ["cortexM0l", "cortexM3l", "cortexM4l", "cortexM4lf", "cortexM7l", "cortexM7lfsp", "cortexM7lfdp",
"ARMv8MBLl", "ARMv8MMLl", "ARMv8MMLlfsp", "ARMv8MMLlfdp", "ARMv8MMLld", "ARMv8MMLldfsp", "ARMv8MMLldfdp" ]
te... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/parseLog.py | Python | apache-2.0 | 4,336 |
#!/usr/bin/python3
import sys
toolchain_list = ["ARM", "GCC", "ARMCLANG"]
core_list = ["cortexM0l", "cortexM3l", "cortexM4l", "cortexM4lf", "cortexM7l", "cortexM7lfsp", "cortexM7lfdp",
"ARMv8MBLl", "ARMv8MMLl", "ARMv8MMLlfsp", "ARMv8MMLlfdp", "ARMv8MMLld", "ARMv8MMLldfsp", "ARMv8MMLldfdp" ]
te... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/parseLog_SV.py | Python | apache-2.0 | 4,342 |
@echo off
set UVEXE=C:\Keil_v5\UV4\UV4.EXE
if .%1==. goto help
for %%a in (ARM GCC ARMCLANG) do if %1==%%a goto checkParam2
echo parameter %1 not supported.
goto help
:checkParam2
if .%2==. goto help
for %%a in ( ^
cortexM0l ^
cortexM3l ^
cortexM4l ^
cortexM4lf ^
cortexM7l ^
cortexM7lfsp ^
cortexM7lfdp ^
A... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/runTest.bat | Batchfile | apache-2.0 | 4,601 |
@echo off
set UVEXE=C:\Keil_v5\UV4\UV4.EXE
if .%1==. goto help
for %%a in (ARM GCC ARMCLANG) do if %1==%%a goto checkParam2
echo parameter %1 not supported.
goto help
:checkParam2
if .%2==. goto help
for %%a in ( ^
cortexM0l ^
cortexM3l ^
cortexM4l ^
cortexM4lf ^
cortexM7l ^
cortexM7lfsp ^
cortexM7lfdp ^
A... | YifuLiu/AliOS-Things | components/cmsis/DSP/DSP_Lib_TestSuite/runTest_SV.bat | Batchfile | apache-2.0 | 3,007 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_class_marks_example_f32.c
*
* Description: Example code to calcula... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_class_marks_example/arm_class_marks_example_f32.c | C | apache-2.0 | 8,230 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_convolution_example_f32.c
*
* Description: Example code demonstrat... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/arm_convolution_example_f32.c | C | apache-2.0 | 10,854 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0 b
*
* Project: CMSIS DSP Library
*
* Title: math_helper.c
*
* Description: Definition of all helper functions required.
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/math_helper.c | C | apache-2.0 | 11,228 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2013 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
*
* Title: math_helper.h
*
* Description: Prototypes of all helper funct... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_convolution_example/math_helper.h | C | apache-2.0 | 3,022 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_dotproduct_example_f32.c
*
* Description: Example code computing d... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c | C | apache-2.0 | 6,776 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_fft_bin_data.c
*
* Description: Data file used for ... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/arm_fft_bin_data.c | C | apache-2.0 | 43,997 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_fft_bin_example_f32.c
*
* Description: Example code demonstrating cal... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c | C | apache-2.0 | 5,673 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_fir_data.c
*
* Description: Data file used for exam... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/arm_fir_data.c | C | apache-2.0 | 12,581 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_fir_example_f32.c
*
* Description: Example code demonstrating h... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/arm_fir_example_f32.c | C | apache-2.0 | 8,951 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0 b
*
* Project: CMSIS DSP Library
*
* Title: math_helper.c
*
* Description: Definition of all helper functions required.
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/math_helper.c | C | apache-2.0 | 11,228 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2013 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
*
* Title: math_helper.h
*
* Description: Prototypes of all helper funct... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_fir_example/math_helper.h | C | apache-2.0 | 3,022 |
;/**************************************************************************//**
; * @file startup_ARMCM0.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM0 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM0/startup_ARMCM0.s | Motorola 68K Assembly | apache-2.0 | 6,086 |
/**************************************************************************//**
* @file system_ARMCM0.c
* @brief CMSIS Device System Source File for
* ARMCM0 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM0/system_ARMCM0.c | C | apache-2.0 | 2,063 |
;/**************************************************************************//**
; * @file startup_ARMCM3.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM3 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM3/startup_ARMCM3.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM3.c
* @brief CMSIS Device System Source File for
* ARMCM3 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM3/system_ARMCM3.c | C | apache-2.0 | 2,428 |
;/**************************************************************************//**
; * @file startup_ARMCM4.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM4.c
* @brief CMSIS Device System Source File for
* ARMCM4 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c | C | apache-2.0 | 2,829 |
;/**************************************************************************//**
; * @file startup_ARMCM7.s
; * @brief CMSIS Core Device Startup File for
; * ARMCM7 Device
; * @version V5.3.1
; * @date 09. July 2018
; ******************************************************************************/
... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.s | Motorola 68K Assembly | apache-2.0 | 6,348 |
/**************************************************************************//**
* @file system_ARMCM7.c
* @brief CMSIS Device System Source File for
* ARMCM7 Device
* @version V5.3.1
* @date 09. July 2018
******************************************************************************/
/*
* C... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c | C | apache-2.0 | 2,880 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_graphic_equalizer_data.c
*
* Description: Data file... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c | C | apache-2.0 | 16,434 |
/* ----------------------------------------------------------------------
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* $Date: 17. January 2013
* $Revision: V1.4.0
*
* Project: CMSIS DSP Library
* Title: arm_graphic_equalizer_example_q31.c
*
* Description: Example showing a... | YifuLiu/AliOS-Things | components/cmsis/DSP/Examples/ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c | C | apache-2.0 | 22,948 |