当前位置:  技术问答>linux和unix

gcc编译成功,arm-linux-gcc编译报错,请高手指教!!

    来源: 互联网  发布时间:2016-01-13

    本文导语:  环境 RH9.0,gcc 3.2 arm-linux-gcc 2.95.3 编译以下程序gcc编译很顺利完成,但arm-linux-gcc 报错: com1.c: In function `set_speed': com1.c:147: parse error before `int' com1.c:149: `speed_arr' undeclared (first use in this function) com1.c:149: (E...

环境 RH9.0,gcc 3.2 arm-linux-gcc 2.95.3
编译以下程序gcc编译很顺利完成,但arm-linux-gcc 报错:

com1.c: In function `set_speed':
com1.c:147: parse error before `int'
com1.c:149: `speed_arr' undeclared (first use in this function)
com1.c:149: (Each undeclared identifier is reported only once
com1.c:149: for each function it appears in.)
com1.c:151: `name_arr' undeclared (first use in this function)

程序源代码如下:
//copy by bobya2003
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#define FALSE 0
#define TRUE 1

int set_Parity(int fd,int databits,int stopbits,int parity);
void set_speed(int fd,int speed);

int main(int argc,char **argv)
{
//int fd
int nread,nwrite;
char buff[255];
char *dev  = "/dev/ttyS0";//com1
int fd = open( dev, O_RDWR | O_NOCTTY );//| O_NOCTTY  );//O_NDELAY );//| O_NOCTTY | O_NDELAY O_NONBLOCK
if (-1 == fd)
{
perror("Can't Open Serial Port");
//exit(1);
}
else 
{
set_speed(fd,115200 );
if (set_Parity(fd,8,1,'N') == FALSE)  
{
printf("Set Parity Errorn");
close(fd);
// exit(1);
         }
else
{
printf("com1 is OK!n");

}
}
while(1)
{
nread = read(fd,buff,255);
if (nread>0)
{
buff[nread]='';
printf("The Read Data:%d,%sn",nread,buff);
printf("Ready send!n");
nwrite=write(fd,"12345",5);
if (nwrite>0) printf("send OKn");
}
}
close(fd);
//exit(0);

}

int set_Parity(int fd,int databits,int stopbits,int parity)

       struct termios options; 
       if  ( tcgetattr( fd,&options)  !=  0) { 
              perror("SetupSerial 1");     
              return(FALSE);  
       }
       options.c_cflag &= ~CSIZE; 
       options.c_lflag  &= ~(ICANON | ECHO | ECHOE | ISIG);  /*Input*/
       options.c_oflag  &= ~OPOST;   /*Output*/
       options.c_iflag   &= ~IXON;        //0x11
       options.c_iflag   &= ~ICRNL;       //0x0d
//        options.c_cflag|=CLOCAL;
//        options.c_cflag|=CREAD;
//        options.c_cflag&=~CRTSCTS;/*数据流控制,无*/

       switch (databits) /*设置数据位数*/
       {   
       case 7:           
              options.c_cflag |= CS7; 
              break;
       case 8:     
              options.c_cflag |= CS8;
              break;   
       default:    
              fprintf(stderr,"Unsupported data sizen"); return (FALSE);  
       }
switch (parity) 
{   
       case 'n':
       case 'N':    
              options.c_cflag &= ~PARENB;   /* Clear parity enable */
              options.c_iflag &= ~INPCK;     /* Enable parity checking */ 
              break;  
       case 'o':   
       case 'O':     
              options.c_cflag |= (PARODD | PARENB); /* 设置为奇效验*/  
              options.c_iflag |= INPCK;             /* Disnable parity checking */ 
              break;  
       case 'e':  
       case 'E':   
              options.c_cflag |= PARENB;     /* Enable parity */    
              options.c_cflag &= ~PARODD;   /* 转换为偶效验*/     
              options.c_iflag |= INPCK;       /* Disnable parity checking */
              break;
       case 'S': 
       case 's':  /*as no parity*/   
           options.c_cflag &= ~PARENB;
              options.c_cflag &= ~CSTOPB;break;  
       default:   
              fprintf(stderr,"Unsupported parityn");    
              return (FALSE);  
       }  
/* 设置停止位*/  
switch (stopbits)
{   
       case 1:    
              options.c_cflag &= ~CSTOPB;  
              break;  
       case 2:    
              options.c_cflag |= CSTOPB;  
          break;
       default:    
               fprintf(stderr,"Unsupported stop bitsn");  
               return (FALSE); 

/* Set input parity option */ 
if (parity != 'n')   
       options.c_iflag |= INPCK; 
tcflush(fd,TCIFLUSH);
options.c_cc[VTIME] = 150; /* 设置超时0 seconds*/   
options.c_cc[VMIN] = 5; /* define the minimum bytes data to be readed*/
if (tcsetattr(fd,TCSANOW,&options) != 0)   

       perror("SetupSerial 3");   
       return (FALSE);  

return (TRUE);  
}

void set_speed(int fd, int speed)
{
       int   i; 
       int   status; 
       struct termios   Opt;
       tcgetattr(fd, &Opt); 
       int speed_arr[] = { B115200,B38400, B19200, B9600, B4800, B2400, B1200, B300,
                      B38400, B19200, B9600, B4800, B2400, B1200, B300, };
       int name_arr[] = {115200,38400,  19200,  9600,  4800,  2400,  1200,  300, 38400,  
                                   19200,  9600, 4800, 2400, 1200,  300, };
       for ( i= 0;  i 

    
 
 

您可能感兴趣的文章:

  • arm-linux-gcc交叉编译出错,但gcc编译没错,什么原因呢???
  • 嵌入式linux开发:一段代码在windows平台用VC编译运行正常,在linux平台用gcc编译运行正常,但是用arm-linux-gcc编译在嵌入式板子上运行就不正常.
  • GCC3.4可以编译2.4内核吗 如何查看某版本内核是用哪个版本gcc编译的
  • 使用popen来执行gcc命令,如何根据读出来的gcc的输出来判断gcc是否编译成功?
  • 问:关于gcc编译器和g++编译器
  • 求一个编译好的的gcc编译器
  • 编译GCC时能不能只编译C/C++的编译器?
  • gcc编译时出错,gcc: installation problem, cannot exec `as': 没有那个文件或目录!!!求助呀呀!!!!!
  • 建立较差编译环境,编译gcc-3.4.4出错
  • gcc与arm-linux-gcc编译的问题???
  • Linux下gcc编译时,如何以静态链接的形式编译?
  • Solaris8,安装了iconv,gcc和gcclib,然后用gcc编译c程序出错。
  • 使用eclipse 加入arm-elf-gcc 或arm-linux-gcc 编译器为什么不好使
  • 是否必须用同一版本GCC编译内核、应用程序、库甚至GCC自己?
  • linux x86_64下由于拷贝gcc的lib目录导致gcc编译器出错
  • GCC编译程序时,有自定义头文件,提示找不到该头文件,但他就在这个目录中,如何设置GCC参数?
  • 使用gcc编译器进行代码编译出来的程序是否遵循gpl协议
  • 为什么g++编译通过了,而gcc却编译通过不了???
  • ubuntu 10.10出现极其诡异的情况,使用gcc编译没任何反应,可以继续输入,但是不提示任何错误;使用make编译效果一样;
  • 求助:当用 gcc 编译时没,加上优化选项 -02 ,可是提示是 gcc: unrecognized option `-02'
  • 安装arm-linux-gcc出错
  • arm-linux-gcc 怎么卸载?
  • arm-linux-gcc 卸载?
  • arm-elf-gcc 和 arm-linux-gcc有什么区别?arm-elf-gcc里的elf代表什么?
  • ADS和arm-linux-gcc
  • arm-linux-gcc 2.95.3 不认识
  • arm-linux-gcc编译JM的问题求教
  • arm-linux-gcc 怎么来的?
  • arm-linux-gcc交叉编译问题
  • arm-linux-gcc 求助
  • arm-linux-gcc不能识别-02选项?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 升级GCC版本,请老师指教
  • 请指教:安装gcc
  • 高手请指教;关于gcc的编译参数 -msoft-float 的问题
  • 在康柏True64的机子上安装gcc-3.2.tar的问题,安装了几次,都是这个问题。感谢各位指教!!
  • Unix下安装GCC时,运行Make时出错,急,请高手指教!
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 命令:mips_fp_le-gcc,mipsel-gcc 是什么意思?跟一般的gcc有什么区别?
  • 怎样升级我的GCC呀,我用的RH7.2,GCC 2.96 ,我从网上下载了一个gcc-3.2.3.tar.gz
  • gcc-ccore、avr-gcc及arm-gcc的区别
  • gcc在哪里?bash:gcc:command not found
  • 如何删掉GCC3.0(我需要GCC2.0-----)
  • Windows版GCC TDM-GCC
  • 急问:如何卸掉gcc 3.2庄gcc 2.96
  • 有人遇到过吗,在安装GCC时提示,"checking gcc ...no "
  • GCC无法安装的问题,希望有人帮我( Debian 4.04ra无法安装GCC)
  • 一套未安装gcc的Linux中安装gcc rpm包时时出现错误
  • 下了一个GCC3.0包用tar xjfv gcc-3.0.tar.bz2解压后出现一堆文
  • 请问如何安装rpm格式的gcc如gcc-3.2.2-5.src.rpm,谢谢
  • 在redhat9下,如何将gcc3.x改为gcc2.x?
  • 我在Solaris8上安装了gcc3.3Solaris8,但是总是出错!错误如下:gcc: syntax error at line 1: `(' unexpected
  • Linux RadHat7.2 系统,无gcc、cc。请问怎么安装gcc和cc?哪里可以下载cc?
  • 我在安装Red Hat Linux 时没有装到gcc,怎么才能在之后把gcc装上?
  • makefile中加入动态库编译,在gcc下正常,在arm gcc下说库找不到?
  • 安装Oracel,关于ln -s /usr/i386-glibc-2.1-linux/bin/i386-glibc21-linux-gcc gcc的问题
  • 使用gcc gdb的大牛进来说说gdb的强大之处在哪。我刚学linux了,vim我确实体会到了其强大之处。而对gcc gdb,体会不到gdb这工具的强大之处。
  • arm-linux-gcc 交叉编译poco-1.3.5-all 报错stlport_arm_linux_gcc库找不到


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3