tool/cmd_domain.cpp
changeset 1130 bb1c11adb2db
parent 1126 b09fd81894cb
child 1133 860d1c3d08fc
equal deleted inserted replaced
1129:4bc1d9f9d73c 1130:bb1c11adb2db
    13 /*****************************************************************************/
    13 /*****************************************************************************/
    14 
    14 
    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     "\n"
    19     "\n"
    19     "Command-specific options:\n";
    20     "Without the --verbose option, one domain is displayed per line.\n"
       
    21     "Example:\n"
       
    22     "\n"
       
    23     "Domain0: LogBaseAddr 0x00000000, Size   6, WorkingCounter 0/1\n"
       
    24     "\n"
       
    25     "The domain's base address for the logical datagram (LRD/LWR/LRW)\n"
       
    26     "is displayed followed by the domain's process data size in byte.\n"
       
    27     "The last values are the current datagram working counter sum and\n"
       
    28     "the expected working counter sum. If the values are equal, all\n"
       
    29     "Pdos are exchanged.\n"
       
    30     "\n"
       
    31     "If the --verbose option is given, the participating slave\n"
       
    32     "configurations/FMMUs and the current process data are additionally\n"
       
    33     "displayed:\n"
       
    34     "\n"
       
    35     "Domain1: LogBaseAddr 0x00000006, Size   6, WorkingCounter 0/1\n"
       
    36     "  SlaveConfig 1001:0, SM3 ( Input), LogAddr 0x00000006, Size 6\n"
       
    37     "    00 00 00 00 00 00\n"
       
    38     "\n"
       
    39     "The process data are displayed as raw hexadecimal bytes.\n"
       
    40     "\n"
       
    41     "Command-specific options:\n"
       
    42     "  --domain   -d <index> Positive numerical domain index. If this\n"
       
    43     "                        option is not specified, all domains are\n"
       
    44     "                        displayed.\n"
       
    45     "  --verbose  -v         Show FMMUs and process data.\n";
    20 
    46 
    21 /****************************************************************************/
    47 /****************************************************************************/
    22 
    48 
    23 void showDomain(unsigned int);
    49 void showDomain(unsigned int);
    24 
    50