请教给位大侠一下6260编译问题,不胜感激!
时间:10-02
整理:3721RD
点击:
Warning: L6340W: options first and last are ignored for link type of scattered
Warning: L6304W: Duplicate input file hal\audio\lib\mtkRVCT31\BesLoudness.a ignored.
Warning: L6304W: Duplicate input file hal\audio\lib\MTKRVCT31\aac_dec.a ignored.
"custom\system\IWIT60M_2432_11B_BB\scatJ707_CST_60M_ML_CIF.txt", line 77 (column 1): Warning: L6312W: Empty Load region description for region BOOTLOADER
"custom\system\IWIT60M_2432_11B_BB\scatJ707_CST_60M_ML_CIF.txt", line 81 (column 1): Warning: L6312W: Empty Load region description for region EXT_BOOTLOADER
Error: L6218E: Undefined symbol Delayms (referred fROM bootup_logo.obj).
Not enough information to produce a SYMDEFs file.
Not enough information to produce a FEEDBACK file.
Not enough information to list image symbols.
这个错误路径究竟在哪里?找不到啊,麻烦大侠们给指点指点,不胜感激,谢谢了!
Warning: L6304W: Duplicate input file hal\audio\lib\mtkRVCT31\BesLoudness.a ignored.
Warning: L6304W: Duplicate input file hal\audio\lib\MTKRVCT31\aac_dec.a ignored.
"custom\system\IWIT60M_2432_11B_BB\scatJ707_CST_60M_ML_CIF.txt", line 77 (column 1): Warning: L6312W: Empty Load region description for region BOOTLOADER
"custom\system\IWIT60M_2432_11B_BB\scatJ707_CST_60M_ML_CIF.txt", line 81 (column 1): Warning: L6312W: Empty Load region description for region EXT_BOOTLOADER
Error: L6218E: Undefined symbol Delayms (referred fROM bootup_logo.obj).
Not enough information to produce a SYMDEFs file.
Not enough information to produce a FEEDBACK file.
Not enough information to list image symbols.
这个错误路径究竟在哪里?找不到啊,麻烦大侠们给指点指点,不胜感激,谢谢了!
你是不是改了屏驱动,直接用的fae给你的初始化,里面有延时函数啊
李传海(2493613119) 10:44:20
Delayms 应该是DelayMs 试下
bootup_logo 这个文件中的Delayms 函数没定义。
combo_lcm.c
下面没有加这个函数定义。
Delayms()
加上这个函数定义,编译通过
void Delayms(kal_uint16 data)
{
kal_uint32 time1;
time1 = drv_get_current_time();
while (drv_get_duration_ms(time1) <= data);
}
