32 lines
597 B
C
Executable File
32 lines
597 B
C
Executable File
#ifndef __CPU1_FIX_H
|
|
#define __CPU1_FIX_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PHY_CPU1_DBG_EN (0)
|
|
#define PHY_SPIKE_RSSI_NF_THD (20)
|
|
#define PHY_SPIKE_RSSI_LOW_CNT (1)
|
|
#define PHY_SPIKE_RSSI_HIGH_CNT (4)
|
|
#define PHY_PWR_SHIFT_FULL_LVL (109)
|
|
|
|
/**
|
|
*@brief cpu1_fix.
|
|
*
|
|
* fix phy sensitivity or more feature in cpu1. calling is blocked
|
|
* with a while loop, so be care for the flow.
|
|
*
|
|
*@param none [none.]
|
|
*@exception [none.]
|
|
*@return [none.]
|
|
*/
|
|
void cpu1_fix();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|