- UID
- 864747
|
void main(void) {
/* put your own code here */
MCUInit(FBUS_40M);
light_init();
DisableInterrupt();
COPCTL=0x07;
for(;;)
{
light_change(1);
Delay(50000);
//feeddog();
}/* loop forever */
/* please make sure that you never leave main */
}
为什么不能复位呢! |
|