难道您没有发现用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啊,通过这个函数没法给出啊~所以想想就不对啊!
//! 设置引脚方向.
//!
//! param ulPort GPIO模块基地址
//! param ucPins 相应的引脚
//! param ulPinIO 需要设定的方向
//!
//! GPIODirModeSet控制 GPIODIR和GPIOAFSEL寄存器,设定引脚的输出方向
//! ,或者引脚作为外设使用即GPIO_DIR_MODE_HW
//!
//!
//!
//!
//! 以下参数:
//! - GPIO_DIR_MODE_IN 输入
//! - GPIO_DIR_MODE_OUT 输出
//! - GPIO_DIR_MODE_HW 硬件控制
//! eturn None.
//*****************************************************************************
void
GPIODirModeSet(unsigned long ulPort, unsigned char ucPins,
unsigned long ulPinIO)
{
// Check the arguments.
ASSERT(GPIOBaseValid(ulPort));
ASSERT((ulPinIO == GPIO_DIR_MODE_IN) || (ulPinIO == GPIO_DIR_MODE_OUT) ||
(ulPinIO == GPIO_DIR_MODE_HW));
////GPIODIR和GPIOAFSEL(设定是GPIO功能还是外设功能)寄存器,设定引脚的输出方向或者引脚作为外设使用即GPIO_DIR_MODE_HW
HWREG(ulPort + GPIO_O_DIR) = ((ulPinIO & 1) ?
(HWREG(ulPort + GPIO_O_DIR) | ucPins) :
(HWREG(ulPort + GPIO_O_DIR) & ~(ucPins)));
HWREG(ulPort + GPIO_O_AFSEL) = ((ulPinIO & 2) ?
(HWREG(ulPort + GPIO_O_AFSEL) | ucPins) :
(HWREG(ulPort + GPIO_O_AFSEL) &
~(ucPins)));
}
一周热门 更多>