3.2 周期(頻率),幅值,相位分析
原理
FFT變換結(jié)果,幅值最大的橫坐標(biāo)對應(yīng)信號頻率,縱坐標(biāo)對應(yīng)幅度。幅值最大的為out[m]=val;則信號頻率f0=(Fs/N)m ,信號幅值Vpp=val/(N/2)。N為FFT的點數(shù),F(xiàn)s為采樣頻率。相位Pha=atan2(a, b)弧度制,其中ab是輸出虛數(shù)結(jié)果的實部和虛部。
添加命令行
shell_fun.h中
void FrqFun(void* param);
shell_fun.c中
#include "frq.h"
shell_cmd_list中添加一行
{ (const uint8_t*)"frt", FrqFun, "frq"},
添加命令執(zhí)行函數(shù)
void FrqFun(void* param)
{
Frq_main();
}
實現(xiàn)代碼
Frq.c
#include "arm_math.h"
#include "arm_const_structs.h"
#include < stdio.h >
#define TEST_LENGTH_SAMPLES 2048
#define FS 10000
extern float32_t testInput_f32_10khz[TEST_LENGTH_SAMPLES];
static float32_t testOutput[TEST_LENGTH_SAMPLES/2];
static uint32_t fftSize = 1024;
static uint32_t ifftFlag = 0;
static uint32_t doBitReverse = 1;
static arm_cfft_instance_f32 varInstCfftF32;
static int testIndex = 0;
static float testtmp_f32_10khz[2048];
static int32_t adcbuffer[2048];
int32_t frq_main(void)
{
arm_status status;
float32_t maxValue;
status = ARM_MATH_SUCCESS;
status=arm_cfft_init_f32(&varInstCfftF32,fftSize);
//memcpy(testtmp_f32_10khz,testInput_f32_10khz,sizeof(testInput_f32_10khz));
adc_samp(adcbuffer,2048);
for(int i=0; i< 2048;i ++)
{
testtmp_f32_10khz[i] = (float)adcbuffer[i];
}
arm_cfft_f32(&varInstCfftF32, testtmp_f32_10khz, ifftFlag, doBitReverse);
arm_cmplx_mag_f32(testtmp_f32_10khz, testOutput, fftSize);
/* Calculates maxValue and returns corresponding BIN value */
arm_max_f32(testOutput, fftSize, &maxValue, &testIndex);
float freq = (FS/TEST_LENGTH_SAMPLES)*testIndex;
float vpp = maxValue/(TEST_LENGTH_SAMPLES/2);
float pha = atan2(testOutput[2*testIndex],testOutput[2*testIndex+1]);
printf("freq=%f,vpp=%f,pha=%frn",freq,vpp,pha);
}
/** endlink */
Frq.h
#ifndef FRQ_H
#define FRQ_H
int frq_main(void);
#endif
測試
輸入frq開始測試印如下
實時采集測試
此時采集的是音頻背景聲,噪聲很小,所以頻率為0
審核編輯:湯梓紅
-
英飛凌
+關(guān)注
關(guān)注
66文章
2134瀏覽量
138255 -
PSoC
+關(guān)注
關(guān)注
12文章
170瀏覽量
91759 -
信號處理
+關(guān)注
關(guān)注
48文章
992瀏覽量
103154 -
FFT
+關(guān)注
關(guān)注
15文章
433瀏覽量
59256 -
頻率
+關(guān)注
關(guān)注
4文章
1422瀏覽量
59101 -
開發(fā)板
+關(guān)注
關(guān)注
25文章
4895瀏覽量
97055 -
RTT
+關(guān)注
關(guān)注
0文章
65瀏覽量
17057
發(fā)布評論請先 登錄
相關(guān)推薦
評論