tool/cmd_domain.cpp
changeset 1137 a73c0f54be42
parent 1136 a0982873d655
equal deleted inserted replaced
1136:a0982873d655 1137:a73c0f54be42
    15 const char *help_domains =
    15 const char *help_domains =
    16     "[OPTIONS]\n"
    16     "[OPTIONS]\n"
    17     "\n"
    17     "\n"
    18     "Show information about the application's configured domains.\n"
    18     "Show information about the application's configured domains.\n"
    19     "\n"
    19     "\n"
    20     "Without the --verbose option, one domain is displayed per line.\n"
    20     "Without the --verbose option, the domains are displayed one-per-line.\n"
    21     "Example:\n"
    21     "Example:\n"
    22     "\n"
    22     "\n"
    23     "Domain0: LogBaseAddr 0x00000000, Size   6, WorkingCounter 0/1\n"
    23     "Domain0: LogBaseAddr 0x00000000, Size   6, WorkingCounter 0/1\n"
    24     "\n"
    24     "\n"
    25     "The domain's base address for the logical datagram (LRD/LWR/LRW)\n"
    25     "The domain's base address for the logical datagram (LRD/LWR/LRW)\n"
    34     "\n"
    34     "\n"
    35     "Domain1: LogBaseAddr 0x00000006, Size   6, WorkingCounter 0/1\n"
    35     "Domain1: LogBaseAddr 0x00000006, Size   6, WorkingCounter 0/1\n"
    36     "  SlaveConfig 1001:0, SM3 ( Input), LogAddr 0x00000006, Size 6\n"
    36     "  SlaveConfig 1001:0, SM3 ( Input), LogAddr 0x00000006, Size 6\n"
    37     "    00 00 00 00 00 00\n"
    37     "    00 00 00 00 00 00\n"
    38     "\n"
    38     "\n"
    39     "The process data are displayed as raw hexadecimal bytes.\n"
    39     "The process data are displayed as hexadecimal bytes.\n"
    40     "\n"
    40     "\n"
    41     "Command-specific options:\n"
    41     "Command-specific options:\n"
    42     "  --domain   -d <index> Positive numerical domain index, or 'all'\n"
    42     "  --domain   -d <index> Positive numerical domain index, or 'all'\n"
    43     "                        for all domains (default).\n"
    43     "                        for all domains (default).\n"
    44     "  --verbose  -v         Show FMMUs and process data additionally.\n";
    44     "  --verbose  -v         Show FMMUs and process data additionally.\n"
       
    45     "\n"
       
    46     "Numerical values can be specified either with decimal (no prefix),\n"
       
    47     "octal (prefix '0') or hexadecimal (prefix '0x') base.\n";
    45 
    48 
    46 /****************************************************************************/
    49 /****************************************************************************/
    47 
    50 
    48 void showDomain(unsigned int);
    51 void showDomain(unsigned int);
    49 
    52