最近刚开始弄这个,我用的单片机是STM32F429系列的,下载了官方DSP库,版本是STM32F4xx_DSP_StdPeriph_Lib_V1.4.0,然后网上找了一段相关的程序,编译之后就出现了以下错误,然后我按照要求吧ARMCM4.h添加进去之后又出现新的错误,请各位帮忙看看,问题出在哪里。以下附代码跟截图
#include "stm32f4xx.h"
#include "./usart/bsp_debug_usart.h"
#include "bsp_adc.h"
#include "systick.h"
#include "arm_math.h"
#include "arm_const_structs.h"
#include "stdio.h"
#include "string.h"
#define TEST_LENGTH_SAMPLES 2048
/*******输入与输出缓冲**********/
static float32_t testOutput[TEST_LENGTH_SAMPLES/2];
static float32_t testInput_f32_10khz[TEST_LENGTH_SAMPLES];
/**********变量**********/
uint32_t fftSize = 1024;
uint32_t ifftFlag = 0;
uint32_t doBitReverse = 1;
/**
* @brief Ö÷oˉêy
* @param ÎT
* @retval ÎT
*/
int main(void)
{
uint16_t i;
/*3õê¼»ˉUSART ÅäÖÃÄ£ê½Îa 115200 8-N-1£¬ÖD¶Ï½óêÕ*/
Debug_USART_Config();
ADC_Configuration();
SysTick_Init();
/**按照实部、虚部的顺序存储*/
for(i=0; i<1024; i++)
{
/*虚部全部置零*/
testInput_f32_10khz[i*2+1] = 0;
/*50Hz正弦波,采样率1KHz ,作为实部*/
testInput_f32_10khz[i*2] = arm_sin_f32(2*3.1415926f*50*i/1000);
}
/**CFFT变换******/
arm_cfft_f32(&arm_cfft_sR_f32_len1024, testInput_f32_10khz, ifftFlag, doBitReverse);
/****求幅值*****/
arm_cmplx_mag_f32(testInput_f32_10khz, testOutput, fftSize);
/**串口输出**/
for(i=0; i<1024; i++)
{
printf("%f
", testOutput);
}
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>