Fedora-ARM
全部博文(241)
分类: LINUX
2007-10-29 22:27:13
chinaunix网友2010-07-02 11:15:38
很无奈,只能向各位求助了。我移植1.3.1 只是第一步配置了开发板的信息。在编译的时候出现了undefined reference 错误 像cmd_bootm.c env_flash.c都有这个错误,可是明明头文件已经包含进来了,而且也有加external的,不知道这是怎么回事,博主能帮我分析一下吗?谢谢
chinaunix网友2010-01-17 19:20:01
博主好,我出现的问题如下: In file included from smdk2440.c:29: /opt/EmbedSky/u-boot-1.2.0/include/s3c2410.h:96: error: syntax error before '*' token /opt/EmbedSky/u-boot-1.2.0/include/s3c2410.h:97: warning: return type defaults to `int' /opt/EmbedSky/u-boot-1.2.0/include/s3c2410.h: In function `S3C2410_GetBase_NAND': /opt/EmbedSky/u-boot-1.2.0/include/s3c2410.h:98: error: `S3C2410_NAND' undeclared (first use in this function) /opt/EmbedSky/u-boot-1.2.0/include/s3c2410.h:98: error: (Each undeclared ide
agan145212010-01-14 10:47:53
移植U-Boot1.2.0到mini2440上,完成后编译出现问题。。。。。。。 下面是出错信息,希望大哥能帮忙看一下,小弟在此谢过了!!!!! [root@tom u-boot-1.2.0]# make mini2440_config Configuring for mini2440 board... [root@tom u-boot-1.2.0]# make for dir in tools examples post post/cpu ; do make -C $dir _depend ; done make[1]: Entering directory `/tmp/uboot1.2.0/u-boot-1.2.0/tools' make[1]: Nothing to be done for `_depend'. make[1]: Leaving directory `/tmp/uboot1.2.0/u-boot-1.2.0/tools' make[1]: Entering directory `/tmp/uboot1.2.0/u-boot-1.2.0/examp
config20102010-01-13 21:18:41
板子突然通了,,,,,在板子起动时,启动了开发板中的QT相关的东西,因为没有这样的设备,屏幕上出现了警告。我就把文件系统里关于QT这块的东西全部删除,之后有时可以,有时不行,不过昨天和今天就没有出过问题。也不知道是不是问题就出在这。 还是中断的问题想请教下!板子有三个中断PIN与MPU相连。两个中断周期是1ms,另一个是125us,相差8倍。 1ms的中断一个或者两个单独工作时正常,MPU可以在下次中断来之前把事情做完(也就是把数据通过电脑用socket传到PC)。而125us的中断单独作用时不能完成,但是可以在一个中断内能将数据放到内存中,感觉是来不急传,数据就越来越多。此中断的作用就是发送一个值,并向寄存器中写入值将中断清除,告诉驱动中的读函数处理完毕。示波器上看用了15us.还有(125-15)us的时间,是不是MPU来不及从此处切换到驱动中的读函数中将数据送到用户层? 不知道有没有别的方法让MPU返回中断后立即去执驱动中的读函数?我用的是等待队列来唤醒驱动中的读函数。