使用u-boot的USB下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记06
本文實(shí)驗(yàn)環(huán)境:
1. windows 7(64bit)
2. JZ2440(V2)
假設(shè)板子的Nor Flash上已經(jīng)燒好了u-boot,如果我想利用u-boot的USB下載功能,把一個(gè)裸板程序燒寫到Nand Flash,應(yīng)該如何操作?
在操作之前,我們必須作如下準(zhǔn)備:
(1)準(zhǔn)備好工具軟件dnw.exe,它的作用是通過USB把要燒寫的文件發(fā)送給板子
(2)板子和PC通過USB線連接,且PC端安裝了可供dnw.exe調(diào)用的USB驅(qū)動(dòng)
對(duì)于(2),如果你的操作系統(tǒng)是Win7-64bit,那么很可能安裝驅(qū)動(dòng)失敗。解決方法可以參考我的博文
http://blog.csdn.net/longintchar/article/details/71102073
燒寫的操作步驟如下:
(1)連接板子和電腦,用兩根USB線(其中一根是USB轉(zhuǎn)串口,另一根用來傳輸文件)
(2)打開串口工具,從Nor Flash啟動(dòng)板子,進(jìn)入u-boot的菜單,如下圖
100ask Bootloader for OpenJTAG
[n] Download u-boot to Nand Flash
[o] Download u-boot to Nor Flash
[k] Download Linux kernel uImage
[j] Download root_jffs2 image
[y] Download root_yaffs image
[d] Download to SDRAM & Run
[z] Download zImage into RAM
[g] Boot linux from RAM
[f] Format the Nand Flash
[s] Set the boot parameters
[b] Boot the system
[r] Reboot u-boot
[q] Quit from menu
Enter your selection:
(3)輸入“n”并回車(其實(shí)這里的描述有誤導(dǎo),不一定是u-boot,也可以是其他裸板程序)。之后會(huì)看到
USB host is connected. Waiting a download.
(4)打開dnw.exe,如下圖
(5)選擇【USB Port】–>【Transmit】,選擇要燒寫的文件,等待傳輸完成。
這時(shí)候,串口會(huì)顯示:
Now, Downloading [ADDRESS:30000000h,TOTAL:18322]
RECEIVED FILE SIZE: 18322 (17KB/S, 1S)
NAND erase: device 0 offset 0x0, size 0x40000
Erasing at 0x20000 – 100% complete.
OK
NAND write: device 0 offset 0x0, size 0x4788
Writing data at 0x4000 – 100% complete.
18312 bytes written: OK
說明燒寫完成了。
【完】
總結(jié)
以上是生活随笔為你收集整理的使用u-boot的USB下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记06的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 产品经理如何锻炼自己看透事物本质的能力
- 下一篇: 编写一个猜数字游戏程序: