#include <hw_types.h>
#include <gpio.h>
#include <sysctl.h>
#include "systemInit.h"
int main(void)
{
jtagWait(); //防止JTAG失效,重要!
clockInit();
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOB);
GPIOPinTypeGPIOOutput(GPIO_PORTB_BASE, GPIO_PIN_0);
while(1)
{
GPIOPinWrite(GPIO_PORTB_BASE,GPIO_PIN_0,0x00);
}
}
给PB0赋值为0.,但是为什么测出来的是高电平呢
此帖出自
小平头技术问答
一周热门 更多>