该代码应该通过按钮读取数字输入引脚的状态并将状态输出到 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 输出仍保持高电平。