1 #if CONFIG_WLS_CSI_PROC
2 /** @file wls_api.h
3  *
4  * @brief This file contains header file for WLS processing fixed-point version API
5  *
6  * Copyright 2023-2024 NXP
7  *
8  * SPDX-License-Identifier: BSD-3-Clause
9  *
10  */
11 
12 /************************************************************************
13  * Header file for WLS processing fixed-point version API
14  ************************************************************************/
15 #ifndef WLS_API_H
16 #define WLS_API_H
17 
18 #include "wls_structure_defs.h"
19 #ifdef DFW_CSI_PROC
20 #include "dsp_cmd.h"
21 #endif
22 
23 int wls_process_csi(unsigned int *bufferMemory,
24                     unsigned int *fftInBuffer,
25                     hal_wls_packet_params_t *packetparams,
26                     hal_wls_processing_input_params_t *inputVals,
27                     unsigned int *resArray);
28 
29 #endif
30 
31 #endif /* CONFIG_WLS_CSI_PROC */
32