GPIOPinWrite函数问题

2019-03-24 14:14发布

代码如下   void
GPIOPinWrite(unsigned long ulPort, unsigned char ucPins, unsigned char ucVal)
{
    //
    // Check the arguments.
    //
    ASSERT(GPIOBaseValid(ulPort));     //
    // Write the pins.
    //
    HWREG(ulPort + (GPIO_O_DATA + (ucPins << 2))) = ucVal;
}  
#define HWREG(x)                                                             
        (*((volatile unsigned long *)(x)))   函数调用如下: GPIOPinWrite(GPIO_PORTG_BASE, GPIO_PIN_2,0xff);     不明白的地方: 为什么将第二个参数左移两位在和第一个参数相加?操作的是哪个寄存器? 计算后的地址在手册找不到说明。。。 谁能帮忙指点下。谢谢
此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
3条回答
Study_Stellaris
2019-03-25 02:57
 精彩回答 2  元偷偷看……0人看过

一周热门 更多>

相关问题

    相关文章