Merge pull request #4456 from JiangYangJie/master

[ab32vg1] add GET_PIN(PORTx,PIN)
This commit is contained in:
Bernard Xiong 2021-03-15 09:24:19 +08:00 committed by GitHub
commit 825b0ca498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -15,4 +15,6 @@
#include <rthw.h> #include <rthw.h>
#include <rtdevice.h> #include <rtdevice.h>
#define GET_PIN(PORTx,PIN) (uint8_t)__AB32_GET_PIN_##PORTx(PIN)
#endif // DRV_COMMON_H__ #endif // DRV_COMMON_H__

View File

@ -15,6 +15,10 @@
#include "board.h" #include "board.h"
#define __AB32_PORT(port) GPIO##port #define __AB32_PORT(port) GPIO##port
#define __AB32_GET_PIN_A(PIN) PIN
#define __AB32_GET_PIN_B(PIN) 8 + PIN
#define __AB32_GET_PIN_E(PIN) 13 + PIN
#define __AB32_GET_PIN_F(PIN) 21 + PIN
int rt_hw_pin_init(void); int rt_hw_pin_init(void);