arm-none-eabi-gcc -o "SENSOR_CB.elf" @"objects.list" -mcpu=cortex-m3 -T"C:\Users\WangBingqian\Desktop\SC10L151Cube\trunk\NO_FOTA_VERSION\STM32L151CBTXA_FLASH.ld" --specs=nosys.specs -Wl,-Map="SENSOR_CB.map" -Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group Core/Src/rs485.o: In function `get_sample_data_max_min_value': rs485.c:(.text.get_sample_data_max_min_value+0x0): multiple definition of `get_sample_data_max_min_value' Core/Src/lora_wan.o:lora_wan.c:(.text.get_sample_data_max_min_value+0x0): first defined here Core/Src/rs485.o: In function `computeMvScale': rs485.c:(.text.computeMvScale+0x0): multiple definition of `computeMvScale' Core/Src/lora_wan.o:lora_wan.c:(.text.computeMvScale+0x0): first defined here Core/Src/rs485.o: In function `computeMvScale_f': rs485.c:(.text.computeMvScale_f+0x0): multiple definition of `computeMvScale_f' Core/Src/lora_wan.o:lora_wan.c:(.text.computeMvScale_f+0x0): first defined here Core/Src/rs485.o: In function `generate_frag_data': rs485.c:(.text.generate_frag_data+0x0): multiple definition of `generate_frag_data' Core/Src/lora_wan.o:lora_wan.c:(.text.generate_frag_data+0x0): first defined here Core/Src/rs485.o:(.bss.frag_num+0x0): multiple definition of `frag_num' Core/Src/lora_wan.o:(.bss.frag_num+0x0): first defined here collect2.exe: error: ld returned 1 exit status make: *** [makefile:50: SENSOR_CB.elf] Error 1 "make -j4 all" terminated with exit code 2. Build might be incomplete.是什么错误
时间: 2024-04-06 10:35:10 浏览: 123
gcc编译器20220506 082534 版本为:gcc-arm-none-eabi-10.3-2021.10-win32
这是一个编译错误,具体原因是因为链接器发现了多个重名的函数或变量,导致链接失败。具体来说,错误信息中显示了多个符号(如函数和变量)的多重定义(multiple definition)错误,其中一个定义在 "rs485.c" 文件中,另一个定义在 "lora_wan.c" 文件中。此外,链接器还指出了一些符号的定义在多个文件中,这也可能会导致链接失败。
要解决这个问题,你需要检查代码中是否存在重名的函数或变量,如果有的话,需要给它们改名或者将其中一个重名的函数或变量删除。另外,你还需要确保每个符号只有一个定义,可以通过使用头文件等方式来确保变量或函数只被定义一次。
阅读全文