48 lines
1.0 KiB
C
Executable File
48 lines
1.0 KiB
C
Executable File
#ifndef __MAC_RX_H
|
|
#define __MAC_RX_H
|
|
|
|
#include "hal_rx.h"
|
|
|
|
/**
|
|
*@brief phy_rx_path_init.
|
|
* config the rx path register from phy module.
|
|
*
|
|
*@param void [none.]
|
|
*@exception [none.]
|
|
*@return [none.]
|
|
*/
|
|
void phy_rx_path_init();
|
|
|
|
/**
|
|
*@brief mac_rx_path_init.
|
|
* config the rx path register.
|
|
*
|
|
*@param void [none.]
|
|
*@exception [none.]
|
|
*@return [none.]
|
|
*/
|
|
void mac_rx_path_init();
|
|
|
|
/**
|
|
*@brief platform_pre_init.
|
|
* config the parameters based on platform.
|
|
*
|
|
*@param void [none.]
|
|
*@exception [none.]
|
|
*@return [none.]
|
|
*/
|
|
void platform_rx_pre_init();
|
|
|
|
/**
|
|
*@brief phy_get_pb_buf_ptr_from_mpdu.
|
|
* get pb buf pointer from mpdu.
|
|
*
|
|
*@param mpdu [mpdu pointer.]
|
|
*@exception [none.]
|
|
*@return [none.]
|
|
*/
|
|
uint32_t phy_get_pb_buf_ptr_from_mpdu(volatile tx_mpdu_start *mpdu);
|
|
|
|
#endif
|
|
|