擦除nand flash + [nand flash command]
crifan 18年前 (2008-03-11) 1881浏览 0评论
nand scrub 首地址 [长度] 此处由于只是打算擦除kenel,然后去查看uimage大小是1519604字节=0x172FF4 bytes,所以,长度就可以设置为0x200000: nand scrub 0x80000 0x200000 [...
工作相关的技术文章
crifan 18年前 (2008-03-11) 1881浏览 0评论
nand scrub 首地址 [长度] 此处由于只是打算擦除kenel,然后去查看uimage大小是1519604字节=0x172FF4 bytes,所以,长度就可以设置为0x200000: nand scrub 0x80000 0x200000 [...
crifan 18年前 (2008-03-10) 2109浏览 0评论
semihosting of ARM【转】 最近想编写一个自动烧写到片外Flash的Bootloader(我用的是周立功的EasyARM2200开发板),在看ADS的开发文档时,经常出现semihosting这个术语,大概查找了一下,是有关调试的一...
crifan 18年前 (2008-03-08) 1639浏览 0评论
在Deepin XP 5.5的系统下,安装了VMware-workstation-5.5.1-19175.exe 然后加载了镜像 ubuntu-7.10-desktop-i386.iso 安装启动后,进入桌面,在打算 Ctrl +Alt +Enter...
crifan 18年前 (2008-03-07) 1515浏览 0评论
Source code documentation generator tool Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba...
crifan 18年前 (2008-03-07) 1968浏览 0评论
what is MPEG1,MPEG2,MPEG4 and their relation with 11172 ,13813,14496 Moving Picture Experts Group (MPEG) a working gro...
crifan 18年前 (2008-03-07) 1355浏览 0评论
Moving Picture Experts Group (MPEG) a working group of ISO/IEC in charge of the development of standards for coded representa...
crifan 18年前 (2008-03-06) 1444浏览 0评论
Utilities found in the binutils package Utility Use as The GNU assembler ld The GNU linker gasp ...
crifan 18年前 (2008-03-05) 2332浏览 0评论
在下面的命令中: arm-linux-ar cru .libs/libmad.a version.o fixed.o bit.o timer.o stream.o frame.o synth.o decoder.o layer12.o layer...
crifan 18年前 (2008-03-05) 1677浏览 0评论
ranlib convert archives to random libraries SYNOPSIS ranlib archive DESCRIPTION On some older UNIX systems, ranlib...
crifan 18年前 (2008-03-05) 1804浏览 0评论
在一个文件中使用另一个文件中的变量的方法 --即extern的用法 步骤: 1.在该变量的原始定义的源文件中,正常定义后, (同时加上自己对应的头文件 <一定需要加???>) 2.在该源文件对应的头文件中,加入该变量的定义,并且在其前面加...