我使用的是CY8C29466芯片。为了降低功耗,我对全局变量进行了配置:Power setting :3.3V/6MHz ; CPU_Clock:SysClk/2;
引脚2.7接了个LED,源码:
#include <m8c.h> // part specific constants and macros
#include "PSoCAPI.h" // PSoC API definitions for all User Modules
void main(void)
{
M8C_EnableGInt; // Eable the globle interrupt
PRT2DM0 |=0x80;
PRT2DM1 &=~0x80;
PRT2DM2 &=~0x80;
PRT2DR |= 0x80;
while(1); // Loop forever
}
接上电源后,要过几分钟之后灯才会亮。
请问我是漏设置了什么了? |