第0课第2节 刚接触开发板之烧写裸板程序

2. 烧写: 裸板,

4种方法: 并口, openjtag, jlink, nor上的uboot

2.1 使用并口工具烧写: 接线, 使用oflash烧写, 重新上电观察效果

2.2 使用openjtag烧写: 接线,使用oflash烧写(oflash烧写完后会复位开发板)

2.3 JLINK只能烧写NOR FLASH,烧好u-boot.bin,使用NOR启动

2.4 使用nor flash上的uboot来烧写

2.4.1 使用菜单通过USB下载烧写

2.4.2 使用TFTP下载烧写

a. 设uboot里的
set ipaddr 192.168.1.17

set serverip 192.168.1.4

save


b. 启动tftp服务
c. u-boot:
tftp 30000000 lcd.bin
nand erase bootloader
nand write 30000000 bootloader

你可能感兴趣的:(嵌入式linux开发)