mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-25 16:37:06 +08:00
17 lines
191 B
C
17 lines
191 B
C
|
#ifndef __DRV_GPIO_H__
|
||
|
#define __DRV_GPIO_H__
|
||
|
|
||
|
#include <board.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int rt_hw_pin_init(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __DRV_GPIO_H__ */
|