drv_gpio.h 676 字节
Newer Older
W
woody 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright (c) 2006-2021, Synwit Technology Co.,Ltd.
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2021-07-01     lik          first version
 */

#ifndef __DRV_GPIO_H__
#define __DRV_GPIO_H__

#include "board.h"

#define GET_PIN(PORTx,PIN) (rt_uint8_t)__SWM_GET_PIN_##PORTx(PIN)

#define __SWM_GET_PIN_A(PIN)  (PIN)
#define __SWM_GET_PIN_B(PIN)  (16 + PIN)
#define __SWM_GET_PIN_C(PIN)  (32 + PIN)
#define __SWM_GET_PIN_D(PIN)  (48 + PIN)
#define __SWM_GET_PIN_E(PIN)  (64 + PIN)
#define __SWM_GET_PIN_M(PIN)  (80 + PIN)
#define __SWM_GET_PIN_N(PIN)  (96 + PIN)

int swm_pin_init(void);

#endif /* __DRV_GPIO_H__ */