57 lines
2.1 KiB
C
57 lines
2.1 KiB
C
/****************************************************************************
|
|
*
|
|
* Copyright(c) 2019 by Aerospace C.Power (Chongqing) Microelectronics. ALL RIGHTS RESERVED.
|
|
*
|
|
* This Information is proprietary to Aerospace C.Power (Chongqing) Microelectronics and MAY NOT
|
|
* be copied by any method or incorporated into another program without
|
|
* the express written consent of Aerospace C.Power. This Information or any portion
|
|
* thereof remains the property of Aerospace C.Power. The Information contained herein
|
|
* is believed to be accurate and Aerospace C.Power assumes no responsibility or
|
|
* liability for its use in any way and conveys no license or title under
|
|
* any patent or copyright and makes no representation or warranty that this
|
|
* Information is free from patent or copyright infringement.
|
|
*
|
|
* ****************************************************************************/
|
|
#ifndef __MAC_RX_TEST_H
|
|
#define __MAC_RX_TEST_H
|
|
|
|
#define MAC_RX_PKT (0)
|
|
#define MAC_RX_SNR_SCAN (1)
|
|
#define MAC_RX_CSI_SCAN (2)
|
|
#define MAC_RX_NOISE_FLOOR_SCAN (3)
|
|
#define MAC_PPM_CALIBRATION (4)
|
|
#define MAC_RX_FC_FROM_PHY (5)
|
|
#define MAC_RX_ZC (6)
|
|
#define MAC_RX_WITH_TX (7)
|
|
#define MAC_RX_THREE_PHASE (8)
|
|
#define MAC_RX_LOOPBACK (9)
|
|
#define MAC_RX_SPUR_MASK (10)
|
|
#define MAC_RX_NOTCH_FILTER (11)
|
|
#define MAC_RX_PPM_CAL (12)
|
|
#define MAC_RX_NF_SELF (13)
|
|
#define MAC_RX_CSI_DUMP (14)
|
|
#define MAC_RX_FFT_DUMP (15)
|
|
#define PHY_RX_TMI_FIX (16)
|
|
#define MAC_TX_PHY_SNR_CAL (17)
|
|
#define MAC_RX_SOUND_SNR_DUMP (18)
|
|
#define MAC_RX_GP_TMAP (19)
|
|
#define MAC_RX_GP_HYBRID (20)
|
|
#define PHY_RX_BURST_MODE (21)
|
|
#define MAC_RX_SPUR_SCAN (22)
|
|
#define MAC_RX_SOFTBIT_DUMP (23)
|
|
#define MAC_RX_ADA_DUMP (24)
|
|
#define MAC_RX_TEST_ID MAC_RX_PKT
|
|
|
|
#define MAC_RX_PHY_FC_DUMP_NUM (256)
|
|
|
|
//#define MAC_RX_PPM_SUPPORT
|
|
//#define PHY_PPM_CAL_ON_SNR
|
|
//#define MAC_RX_ALL_PKT_SUPPORT
|
|
//#define MAC_RX_TIME_STAMP_SUPPORT
|
|
//#define MAC_RX_FC_ERR_PRINT_PPM_SUPPORT
|
|
|
|
uint32_t mac_rx_ppm_cali();
|
|
|
|
#endif
|
|
|