Skip to content

Commit

Permalink
[xrock]fix some string
Browse files Browse the repository at this point in the history
  • Loading branch information
jianjunjiang committed Aug 5, 2021
1 parent 9ef9913 commit fcfa3a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ usage:
xrock maskrom <ddr> <usbplug> - Initial chip using ddr and usbplug in maskrom mode
xrock version - Show chip version
xrock capability - Show capability information
xrock reset [maskrom] - Reset device to normal or maskrom mode
xrock reset [maskrom] - Reset chip to normal or maskrom mode
xrock hexdump <address> <length> - Dumps memory region in hex
xrock dump <address> <length> - Binary memory dump to stdout
xrock read <address> <length> <file> - Read memory to file
Expand All @@ -76,7 +76,7 @@ usage:

- The maskrom command can only used in maskrom mode, Before executing other commands, you must first execute the maskrom command

- The memory base address from `0`, **NOT** sdram's physical address.
- The memory base address from 0, **NOT** sdram's physical address.

### RK1808

Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static void usage(void)
printf(" xrock maskrom <ddr> <usbplug> - Initial chip using ddr and usbplug in maskrom mode\r\n");
printf(" xrock version - Show chip version\r\n");
printf(" xrock capability - Show capability information\r\n");
printf(" xrock reset [maskrom] - Reset device to normal or maskrom mode\n");
printf(" xrock reset [maskrom] - Reset chip to normal or maskrom mode\n");
printf(" xrock hexdump <address> <length> - Dumps memory region in hex\r\n");
printf(" xrock dump <address> <length> - Binary memory dump to stdout\r\n");
printf(" xrock read <address> <length> <file> - Read memory to file\r\n");
Expand Down

0 comments on commit fcfa3a5

Please sign in to comment.