echo [args..] - echo args to console; c suppresses newline echo命令回显参数。
7、erase
erase start end - erase FLASH from addr ‘‘start‘‘ to addr ‘‘end‘‘ erase N:SF[-SL] - erase sectors SF-SL in FLASH bank # N erase bank N - erase FLASH bank # N erase all - erase all FLASH banks erase命令可以擦Flash。 参数必须指定Flash擦除的范围。 按照起始地址和结束地址,start必须是擦除块的起始地址;end必须是擦除末尾块的结束地址。这种方式最常用。举例说明:擦除0x20000 – 0x3ffff区域命令为erase 20000 3ffff。 按照组和扇区,N表示Flash的组号,SF表示擦除起始扇区号,SL表示擦除结束扇区号。另外,还可以擦除整个组,擦除组号为N的整个Flash组。擦除全部Flash只要给出一个all的参数即可。
8、flinfo
flinfo - print information for all FLASH memory banks flinfo N - print information for FLASH memory bank # N flinfo命令打印全部Flash组的信息,也可以只打印其中某个组。一般嵌入式系统的Flash只有一个组。
9、go
go addr [arg ...] - start application at address ‘‘addr‘‘ passing ‘‘arg‘‘ as arguments go命令可以执行应用程序。 第1个参数是要执行程序的入口地址。 第2个可选参数是传递给程序的参数,可以不用。
10、minfo iminfo addr [addr ...] - print header information for application image starting at address ‘‘addr‘‘ in memory; this includes verification of the image contents (magic number, header and payload checksums) iminfo可以打印程序映像的开头信息,包含了映像内容的校验(序列号、头和校验和)。 第1个参数指定映像的起始地址。 可选的参数是指定更多的映像地址。
11、loadb loadb [ off ] [ baud ] - load binary file over serial line with offset ‘‘off‘‘ and baudrate ‘‘baud‘‘ loadb命令可以通过串口线下载二进制格式文件。
12、loads loads [ off ] - load S-Record file over serial line with offset ‘‘off‘‘ loads命令可以通过串口线下载S-Record格式文件。
16、printenv printenv - print values of all environment variables printenv name ... - print value of environment variable ‘‘name‘‘ printenv命令打印环境变量。 可以打印全部环境变量,也可以只打印参数中列出的环境变量。
17、protect protect on start end - protect Flash from addr ‘‘start‘‘ to addr ‘‘end‘‘ protect on N:SF[-SL] - protect sectors SF-SL in Flash bank # N protect on bank N - protect Flash bank # N protect on all - protect all Flash banks protect off start end - make Flash from addr ‘‘start‘‘ to addr ‘‘end‘‘ writable protect off N:SF[-SL] - make sectors SF-SL writable in Flash bank # N protect off bank N - make Flash bank # N writable protect off all - make all Flash banks writable protect命令是对Flash写保护的操作,可以使能和解除写保护。 第1个参数on代表使能写保护;off代表解除写保护。 第2、3参数是指定Flash写保护操作范围,跟擦除的方式相同。
19、run run var [...] - run the commands in the environment variable(s) ‘‘var‘‘ run命令可以执行环境变量中的命令,后面参数可以跟几个环境变量名。
20、setenv setenv name value ... - set environment variable ‘‘name‘‘ to ‘‘value ...‘‘ setenv name - delete environment variable ‘‘name‘‘ setenv命令可以设置环境变量。 第1个参数是环境变量的名称。 第2个参数是要设置的值,如果没有第2个参数,表示删除这个环境变量。
21、sleep sleep N - delay execution for N seconds (N is _decimal_ !!!) sleep命令可以延迟N秒钟执行,N为十进制数。