Path: blob/master/ALFA-W1F1/RTL8814AU/hal/phydm/halrf/halrf_psd.h
1308 views
/******************************************************************************1*2* Copyright(c) 2007 - 2017 Realtek Corporation.3*4* This program is free software; you can redistribute it and/or modify it5* under the terms of version 2 of the GNU General Public License as6* published by the Free Software Foundation.7*8* This program is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for11* more details.12*13*****************************************************************************/1415#ifndef __HALRF_PSD_H__16#define __HALRF_PSD_H__171819struct _halrf_psd_data {20u32 point;21u32 start_point;22u32 stop_point;23u32 average;24u32 buf_size;25u32 psd_data[256];26u32 psd_progress;27};2829u3230halrf_psd_init(31void *dm_void);3233u3234halrf_psd_query(35void *dm_void,36u32 *outbuf,37u32 buf_size);3839u3240halrf_psd_init_query(41void *dm_void,42u32 *outbuf,43u32 point,44u32 start_point,45u32 stop_point,46u32 average,47u32 buf_size);4849#endif /*#__HALRF_PSD_H__*/505152