mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
24 lines
No EOL
643 B
C
Executable file
24 lines
No EOL
643 B
C
Executable file
#ifndef __RTK_API_MIIM_H__
|
|
#define __RTK_API_MIIM_H__
|
|
|
|
/* Function Name:
|
|
* phy_ptpRefTime_set
|
|
* Description:
|
|
* Set the reference time of PHY of the specified port.
|
|
* Input:
|
|
* timeStamp - reference timestamp value
|
|
* Output:
|
|
* None
|
|
* Return:
|
|
* RT_ERR_OK
|
|
* RT_ERR_FAILED
|
|
* RT_ERR_UNIT_ID - invalid unit id
|
|
* RT_ERR_NOT_INIT - The module is not initial
|
|
* RT_ERR_INPUT - invalid input parameter
|
|
* RT_ERR_PORT_NOT_SUPPORTED - This function is not supported by the PHY of this port
|
|
* Note:
|
|
* None
|
|
*/
|
|
extern ret_t phy_ptpRefTime_set(rtk_time_timeStamp_t timeStamp);
|
|
|
|
#endif |