。DescriptionResourcePathLocationTypeUnresolved symbol ti_sy
2019-07-19 14:31
2019-06-18 12:46
请问一下,我将sys/bios下的LCD_TOUCH例程移植到MMCSD_FATFS下时,出现错误Unresolved symbol ti_sy
2020-04-24 11:34
本帖最后由 一只耳朵怪 于 2018-5-22 14:37 编辑 /* * main.c *///display the frequency and amplitude#ifndef__LCD_MODULE_H__#define__LCD_MODULE_H__#endif#ifndef TARGET_IS_BLIZZARD_RB1#define TARGET_IS_BLIZZARD_RB1#endif#ifndef PART_TM4C123GH6PM#define PART_TM4C123GH6PM#endif#include#include#include "inc/hw_types.h"#include "inc/hw_memmap.h"#include "driverlib/debug.h"#include "driverlib/gpio.h"#include"driverlib/sysctl.h"#include "driverlib/timer.h"#include"driverlib/rom.h"#include "inc/tm4c123gh6pge.h"#include "LCD_module.h"extern uint8_t LCD_ASCII[127][16];float Frequency=12345.12,Amplitude=0;void display(void)[uint8_t i;uint8_t temp_frequency[7];// uint8_t temp_amplitude[4];LCD_string_16x8(1,1,"Frequency:");//get the value of the arraytemp_frequency[0]=(int)Frequency/10000;//10ktemp_frequency[1]=((int)Frequency%10000)/1000;//1ktemp_frequency[2]=((int)Frequency/100)%10;//100temp_frequency[3]=((int)Frequency/10)%10;//10temp_frequency[4]=(int)Frequency%10;//1temp_frequency[5]=((int)Frequency*10)%10;//0.1temp_frequency[6]=((int)Frequency*100)%10;//0.01//display the frequency for(i=1;i
2018-05-22 05:05
在CCS中编译写好的Tiva套件的程序时,出现unresolved symbol的错误,看论坛里面都说把缺少的库文件添加进工程就行了,我是直接在file search path中添加
2020-04-03 10:27
当出现以下错误:unresolved symbol _Cla1funcsLoadSizeunresolved symbol _Cla1funcsLoadStartunresolved
2019-03-11 17:49
本帖最后由 一只耳朵怪 于 2018-6-19 15:52 编辑 自己新建的工程中调用了CSL_chipReadReg ()函数,连接中出现unresolved symbol的问题。在
2018-06-19 06:54
程序的时候,出现的错误如下图所示:网上查了下,大部分对于unresolved symbol的解释是没有连接到相应的Linker,可是我已经连了一些,不知到是不是还是缺哪个Lib或者头文件,请教大家,希望知道的高手帮忙解答一下,多谢了!
2020-07-30 10:38
本人刚接触C6678没多久,学习了edma3的例程之后想自己新建一个工程,结果出现了如下的错误我找了很多资料,大概意思是库文件没加进去导致的,但是库文件我是照搬例程的,文件路径和例程都是一样的,很费解
2018-07-24 08:45
;My_Motor.out" not built My_Motorline 01340954591661220unresolved symbol _AdcRegs, first
2018-12-10 11:11