Patches for LPC17xx SSP driver from Chris Taglia; patch for RAM test from Rommel Marcelo

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5792 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2013-03-27 12:39:21 +00:00
parent c3b58f41db
commit 11444754b1

View File

@ -85,11 +85,11 @@ static void show_usage(FAR const char *progname, int exitcode)
{ {
printf("\nUsage: %s [-w|h|b] <hex-address> <decimal-size>\n", progname); printf("\nUsage: %s [-w|h|b] <hex-address> <decimal-size>\n", progname);
printf("\nWhere:\n"); printf("\nWhere:\n");
printf(" <hex-address> starting address of the test."); printf(" <hex-address> starting address of the test.\n");
printf(" <decimal-size> number of memory locations."); printf(" <decimal-size> number of memory locations.\n");
printf(" -w Sets the width of a memory location to 32-bits."); printf(" -w Sets the width of a memory location to 32-bits.\n");
printf(" -h Sets the width of a memory location to 16-bits (default)."); printf(" -h Sets the width of a memory location to 16-bits (default).\n");
printf(" -b Sets the width of a memory location to 8-bits."); printf(" -b Sets the width of a memory location to 8-bits.\n");
exit(exitcode); exit(exitcode);
} }