32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/***************************************************************************************************
|
|
文件名: eth2gpio.h
|
|
----------------------------------------------------------------------------
|
|
描述 : eth2gpio.c的头文件
|
|
----------------------------------------------------------------------------
|
|
修改日志 :
|
|
日期 姓名 操作
|
|
----------------------------------------------------------------------------
|
|
2020-11-25 陈云洲 创建
|
|
***************************************************************************************************/
|
|
|
|
#ifndef _ETH2GPIO_H_
|
|
#define _ETH2GPIO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "eth2sys.h"
|
|
|
|
#ifdef ETH2_OS_LINUX
|
|
VOID eth2gpio_reset(VOID);
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|