
"GDKDiag.h"

This file is used for configuring GDK diagnostic commands.
User should not edit the contents of this file 
unless he/she is fully understanding how to edit this file.

Comments should be placed after the end of command configuration
(after the right curly brace "}").

{
t b [Set Board Trace] 1 [Slot Number];
t [Set Device Trace] 2 [Option] [Device]
t d [Trace Disable] 0;
d [Dump Memory] 2 [Start Address] [End Address];
m [Modify Memory] 2 [Address] [Value];
s [Station Status] 1 [Port Number];
c [CO Status] 1 [CO Number];
v [VMIB Status] 1 [Port Number];
l [Logical STA Status] 1 [STA Number];
p [Print Channel Assign] 1 [v s];
gsxd dump all [GSXD Dump] 0;
bc [Board Configuration Table] 0;
bs [View Board Status] 1 [Slot Number];
ts [Time slot Assignment] 0;
bl [B Channel Listening] 0;
ta [Traffic Analysis] 1 [Option:all cosum hw...];
log view [Log Data View] 0;
log clear [Log Data Clear] 0;
ws [WTIB Statistics] 1 [Option];
up [Software Upgrade] 0;
vc [VMIB Control] 1 [a s u];
hd [Display HDLC Status] 0;
setsw [Set Service Switch] 2 [Option:OOR or NOR] [Target]; 
? [Help Message] 0;                                                                                                                                                              
x [Log Out] 0;
}

There are five special characters used for command configureation.

Left and right curly braces ("{" and "}") are used for denote the start and
the end of command configuration, respectively. Therefore, all the commands
should be placed inside curly braces.

Left and right brackets ("[" and "]") are used for denote the start and
the end of caption string for commands and arguments. The caption strings
defined here are used in menu and dialog boxes.

Semicolon (";") is used for denoting the end of one command configuration.

Ex1) "r t [Display Type] 0;"
    "r t" : Command itself.
    "[Display Type]" : Command caption that is to be used in menu.
    "0" : Number of argument. (rt command does not need argument.)
    ";" : End of rt command configuration.

Ex2) r c [CO Status] 1 [Port Number];
    "r c" : Command itself.
    "[CO Status]" : Command caption that is to be used in menu.
    "1" : Number of argument. (rc command needs one argument.)
    "[Port Number]" : Argument caption that is to be used in Dialog box.
    ";" : End of rc command configuration.
