0

该代码应该通过按钮读取数字输入引脚的状态并将状态输出到 LED。即当输入为高时,LED 亮,反之亦然。由于按钮连接到上拉电阻,当按下按钮时,输入应该读取为低,反之亦然。

我的代码:

    #include "board.h"
    #include <stdio.h>

    //setting pointers
    #define Port0 ((LPC_GPIO_T *) 0x50000000) //Port 0
    #define IOCON ((LPC_IOCON_T *) 0x40044000) //IO configuration

    int main(void)
    {

        /* Initialize pins */       
        Port0->DIR &= ~((1 << 1)); //PIO0_1 input - onboard switch (unpressed state is pulled-up)
        Port0->DIR |= (1<<7);      //PIO0_7 output - onboard LED

        //Pin configuration
        IOCON->REG[IOCON_PIO0_7] &= 0x0 << 3; //No addition pin function
        IOCON->REG[IOCON_PIO0_1] &= 0x0 << 3; // "

        Port0->DATA[1<<7] &= ~(1<<7); // output initially low 

        while (1) {

            if((Port0->DATA[1<<1]) & (1<<1)) //When input is high
            {
                Port0->DATA[1<<7] |= (1<<7); //drive PIO0_7 High

            }
            else
            {
                 Port0->DATA[1<<7] &= ~(1<<7); //Drive PIO0_7 Low
            }
        }

        return 0;
    }

执行这部分代码时,除非按下按钮,否则 PIO0_7 保持低电平。但是,由于上拉开关,它是否意味着以相反的方式工作?我还用电压表仔细检查了这一点。

我试着改变

     if((Port0->DATA[1<<1]) & (1<<1)) //When input is high

     if(!(Port0->DATA[1<<1]) & (1<<1)) //When input is Low

即使按下按钮,LED 输出仍保持高电平。

4

1 回答 1

1

假设您Port0->DATA[0]指向 Base-Address0x5000 0000并定义为对齐的 8 位数组,那么您的 Pin-Port 寻址/屏蔽是错误的。

请参阅LPC111x 用户手册 UM10398 Rev. 12.4 p196 第 12.4.1 章写入/读取数据操作

为了使软件能够在单次写入操作中设置 GPIO 位而不影响任何其他引脚,14 位宽地址总线的位 [13:2] 用于创建 12 位宽掩码用于写入和读取每个端口的 12 个 GPIO 引脚上的操作。

因此,地址中有 2 位的偏移量来获取/设置所需引脚的值。因此,您必须将地址移动 2 位,以下应该可以解决问题:

Port0->DATA[1<<(7+2)] &= ~(1<<7); // output initially low 

while (1) {
    if((Port0->DATA[1<<(1+2)]) & (1<<1)) //When input is high
    {
        Port0->DATA[1<<(7+2)] |= (1<<7); //drive PIO0_7 High
    }
    else
    {
         Port0->DATA[1<<(7+2)] &= ~(1<<7); //Drive PIO0_7 Low
    }
}
于 2018-12-10T12:06:44.297 回答