难道您没有发现用GPIODirModeSet时少点什么吗?您要输出的数据在哪儿啊!
GPIODirModeSet
Sets the direction and mode of the specified pin(s).
Prototype:
void
GPIODirModeSet(unsigned long ulPort,
unsigned char ucPins,
unsigned long ulPinIO)
ulPort is the base address of the GPIO port(这个参数是要操作的IO口,比如PA)
ucPins is the bit-packed representation of the pin(s). (这个是要操作的针脚,比如PA0)
ulPinIO is the pin direction and/or mode.(这个是要把这些针脚设为什么模式)
GPIODirModeSet是设置IO口的方向啊,是输入还是输出。当然没法点亮LED,它只会操作方向寄存器,不会操作输出锁存器啊
GPIOPinTypeGPIOOutput才是操作输出锁存器的啊!
难道您没有发现用GPIODirModeSet时少点什么吗?您要输出的数据在哪儿啊!
GPIODirModeSet
Sets the direction and mode of the specified pin(s).
Prototype:
void
GPIODirModeSet(unsigned long ulPort,
unsigned char ucPins,
unsigned long ulPinIO)
ulPort is the base address of the GPIO port(这个参数是要操作的IO口,比如PA)
ucPins is the bit-packed representation of the pin(s). (这个是要操作的针脚,比如PA0)
ulPinIO is the pin direction and/or mode.(这个是要把这些针脚设为什么模式)
假设LED在PA0口上,我要在PA0上输出高电位点亮LED啊,通过这个函数没法给出啊~所以想想就不对啊!
一周热门 更多>