mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 18:22:28 +02:00
format the printf
This commit is contained in:
parent
c0eaa27e65
commit
c4b2faf24f
@ -78,27 +78,27 @@ int handle_nprog(void)
|
|||||||
|
|
||||||
int handle_help(void)
|
int handle_help(void)
|
||||||
{
|
{
|
||||||
printf("\n Command support in current version:");
|
printf("\n Command support in current version:"
|
||||||
printf("\n help print this help;");
|
"\n help print this help;"
|
||||||
printf("\n boot boot device and make it in stage2;");
|
"\n boot boot device and make it in stage2;"
|
||||||
printf("\n list show current device number can connect;");
|
"\n list show current device number can connect;"
|
||||||
printf("\n fconfig set USB Boot config file;");
|
"\n fconfig set USB Boot config file;"
|
||||||
printf("\n nquery query NAND flash info;");
|
"\n nquery query NAND flash info;"
|
||||||
printf("\n nread read NAND flash data with checking bad block and ECC;");
|
"\n nread read NAND flash data with checking bad block and ECC;"
|
||||||
printf("\n nreadraw read NAND flash data without checking bad block and ECC;");
|
"\n nreadraw read NAND flash data without checking bad block and ECC;"
|
||||||
printf("\n nreadoob read NAND flash oob without checking bad block and ECC;");
|
"\n nreadoob read NAND flash oob without checking bad block and ECC;"
|
||||||
printf("\n nerase erase NAND flash;");
|
"\n nerase erase NAND flash;"
|
||||||
printf("\n nprog program NAND flash with data and ECC;");
|
"\n nprog program NAND flash with data and ECC;"
|
||||||
printf("\n nmark mark a bad block in NAND flash;");
|
"\n nmark mark a bad block in NAND flash;"
|
||||||
printf("\n go execute program in SDRAM;");
|
"\n go execute program in SDRAM;"
|
||||||
printf("\n version show current USB Boot software version;");
|
"\n version show current USB Boot software version;"
|
||||||
printf("\n exit quit from telnet session;");
|
"\n exit quit from telnet session;"
|
||||||
printf("\n readnand read data from nand flash and store to SDRAM;");
|
"\n readnand read data from nand flash and store to SDRAM;"
|
||||||
printf("\n load load file data to SDRAM;");
|
"\n load load file data to SDRAM;"
|
||||||
printf("\n run run command script in file;");
|
"\n run run command script in file;"
|
||||||
printf("\n memtest do SDRAM test;");
|
"\n memtest do SDRAM test;"
|
||||||
printf("\n gpios let one GPIO to high level;");
|
"\n gpios let one GPIO to high level;"
|
||||||
printf("\n gpioc let one GPIO to low level;");
|
"\n gpioc let one GPIO to low level;");
|
||||||
/* printf("\n nmake read all data from nand flash and store to file(experimental);"); */
|
/* printf("\n nmake read all data from nand flash and store to file(experimental);"); */
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -112,10 +112,10 @@ int handle_version(void)
|
|||||||
int handle_fconfig(void)
|
int handle_fconfig(void)
|
||||||
{
|
{
|
||||||
if (com_argc < 3) {
|
if (com_argc < 3) {
|
||||||
printf("\n Usage:");
|
printf("\n Usage:"
|
||||||
printf(" fconfig (1) (2) ");
|
" fconfig (1) (2) "
|
||||||
printf("\n 1:configration file name \
|
"\n 1:configration file name"
|
||||||
\n 2:deivce index number ");
|
"\n 2:deivce index number");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
/* usb_infenic_config(atoi(com_argv[2]),com_argv[1]); */
|
/* usb_infenic_config(atoi(com_argv[2]),com_argv[1]); */
|
||||||
|
Loading…
Reference in New Issue
Block a user