CSI-DSP
Version 1.0.0
CSI DSP Software Library
Main Page
Modules
Data Structure Index
Data Fields
csky_fft_bin_example_f32.c
/******************************************************************************
* @file csky_fft_bin_example_f32.c
* @brief Example code demonstrating calculation of Max energy bin of
* frequency domain of input signal.
* @version V1.0
* @date 20. Dec 2016
******************************************************************************/
/* ---------------------------------------------------------------------------
* Copyright (C) 2016 CSKY Limited. All rights reserved.
*
* Redistribution and use of this software in source and binary forms,
* with or without modification, are permitted provided that the following
* conditions are met:
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of CSKY Ltd. nor the names of CSKY's contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission of CSKY Ltd.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
* -------------------------------------------------------------------------- */
#include "
csky_math.h
"
#include "
csky_const_structs.h
"
#define TEST_LENGTH_SAMPLES 2048
/* -------------------------------------------------------------------
* External Input and Output buffer Declarations for FFT Bin Example
* ------------------------------------------------------------------- */
extern
float32_t
testInput_f32_10khz
[
TEST_LENGTH_SAMPLES
];
static
float32_t
testOutput
[
TEST_LENGTH_SAMPLES
/2];
/* ------------------------------------------------------------------
* Global variables for FFT Bin Example
* ------------------------------------------------------------------- */
uint32_t
fftSize
= 1024;
uint32_t
ifftFlag
= 0;
uint32_t
doBitReverse
= 1;
/* Reference index at which max energy of bin ocuurs */
uint32_t
refIndex
= 213,
testIndex
= 0;
/* ----------------------------------------------------------------------
* Max magnitude FFT Bin test
* ------------------------------------------------------------------- */
int32_t
main
(
void
)
{
csky_status
status
;
float32_t
maxValue;
status =
CSKY_MATH_SUCCESS
;
/* Process the data through the CFFT/CIFFT module */
csky_cfft_f32
(&
csky_cfft_sR_f32_len1024
,
testInput_f32_10khz
,
ifftFlag
,
doBitReverse
);
/* Process the data through the Complex Magnitude Module for
calculating the magnitude at each bin */
csky_cmplx_mag_f32
(
testInput_f32_10khz
,
testOutput
,
fftSize
);
/* Calculates maxValue and returns corresponding BIN value */
csky_max_f32
(
testOutput
,
fftSize
, &maxValue, &
testIndex
);
if
(
testIndex
!=
refIndex
)
{
status =
CSKY_MATH_TEST_FAILURE
;
}
/* ----------------------------------------------------------------------
** Loop here if the signals fail the PASS check.
** This denotes a test failure
** ------------------------------------------------------------------- */
if
( status !=
CSKY_MATH_SUCCESS
)
{
while
(1);
}
while
(1);
/* main function does not return */
}