1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  */
7 
8 #ifndef __GPIO_H__
9 #define __GPIO_H__
10 
11 #define GET_PIN(gpiox, pinNumber) (rt_base_t)(gpiox << 5 | pinNumber)
12 
13 int rt_hw_gpio_init(void);
14 
15 #endif
16