这是电路图 问一下 怎么看出这个直流电机是接在GPIOaA0 A2 A4 A6上呢一下端口宏定义
/****************端口宏定义*****************/
#define IN1_DAT GpioDataRegs.GPADAT.bit.GPIOA0
#define IN1_DIR GpioMuxRegs.GPADIR.bit.GPIOA0
#define IN2_DAT GpioDataRegs.GPADAT.bit.GPIOA2
#define IN2_DIR GpioMuxRegs.GPADIR.bit.GPIOA2
#define IN3_DAT GpioDataRegs.GPADAT.bit.GPIOA4
#define IN3_DIR GpioMuxRegs.GPADIR.bit.GPIOA4
#define IN4_DAT GpioDataRegs.GPADAT.bit.GPIOA6
#define IN4_DIR GpioMuxRegs.GPADIR.bit.GPIOA6
#define Up_Key GpioDataRegs.GPEDAT.bit.GPIOE2
#define Down_Key GpioDataRegs.GPBDAT.bit.GPIOB8
我目前的困惑时不知道这里定义的端口是怎么得到的?
|