智能车制作

标题: 使用cw写程序的问题,请教! [打印本页]

作者: 时代还怪    时间: 2010-3-11 14:15
标题: 使用cw写程序的问题,请教!
刚刚学用cw环境编程。想编个流水灯程序,但是却有错误,好像意思是语言类错误,提示是:[url=]Tips[/url]
Use a token listed in the error message. Check if you are using the right compiler language option. E.g. you may compile a file with C++ keywords, but are not compiling the file with C++ option set. Too many nested scopes
请高手指教!下面是代码:
#include <hidef.h>      /* common defines and macros */
#include <MC9S12XS128.h>     /* derivative information */
#pragma LINK_INFO DERIVATIVE "mc9s12xs128"
/*sbit pb0=PB0;
sbit pb1=PB1;
sbit _d=DDR  */
#define leddata PORTB
#define led_d DDRB
void delay();
void main(void) {
  /* put your own code here */
  EnableInterrupts;
  
  led_d=0xff;
  leddata=0x00;
  for(;;)
  {   
    delay(150);
    leddata++;
  }
  
}  
void delay(int z) {
  
  int i,j;
  for(i=0;i<150;i++)
     for(j=0;j<z;j++)
}
作者: 时代还怪    时间: 2010-3-11 16:45
问题已经解决了,原来是在delay延时函数那里少了个分号!呵呵!




欢迎光临 智能车制作 (http://111.231.132.190/) Powered by Discuz! X3.2