关于变量在多个.C文件中使用(Undefined symbol tempbuff (referred from main.o).问题解决)

发布时间:2024年01月17日

1、如图结构,想在multimenu.C和usart1.c中使用变量tempbuff

于是,就将使用的代码移动了过来,为SetTxData1_toLCD(0x00,0x01);和UserUart1Send( tempbuff1,sizeof(tempbuff1));,编译后提示错误如下:

communication_protocol\communication_protocol.axf: Error: L6218E: Undefined symbol tempbuff (referred from main.o).

提示未定义,原因是只在usart1.h中做了extern的声明,如图

此extern的声明只是告知其他程序文件可以调用usart1.h头文件来使用tempbuff[8];和tempbuff1[10];,但是还必须要在usart.c中定义这两个变量才行,从而能编译通过。

另外,如果是函数在别的文件中使用,可以不用加extern,如void UserUart1Send(uint8_t *send_data,uint8_t send_len);

文章来源:https://blog.csdn.net/jacklood/article/details/135655147
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。