hti/HtiCommPlugins/HtiSerialCommPlugin/group/HtiSerialComm.cfg
branchRCL_3
changeset 59 8ad140f3dd41
parent 0 a03f92240627
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
       
     1 # HTISerialComm communication plugin configuration file
       
     2 
       
     3 # The CommPort parameter configures the number of the comm port to use.
       
     4 # Note that comm port numbering starts from zero, so for example in WINS-
       
     5 # emulator comm port 0 is physically COM1 in Windows.
       
     6 # Possible values: 0 - 99
       
     7 # Default value: 0
       
     8 
       
     9 #CommPort=0
       
    10 
       
    11 
       
    12 # The DataRate parameter configures the speed of the serial port (bits/sec)
       
    13 # Possible values: 2400, 4800, 9600, 19200, 38400, 57600, 115200,
       
    14 #                  576000, 1152000, 4000000
       
    15 # Default value: 115200
       
    16 
       
    17 #DataRate=2400
       
    18 #DataRate=4800
       
    19 #DataRate=9600
       
    20 #DataRate=19200
       
    21 #DataRate=38400
       
    22 #DataRate=57600
       
    23 #DataRate=115200
       
    24 #DataRate=576000
       
    25 #DataRate=1152000
       
    26 #DataRate=4000000
       
    27 
       
    28 
       
    29 # The Parity parameter configures the parity to be used
       
    30 # Possible values: none, even, odd, mark, space
       
    31 # Default value: none
       
    32 
       
    33 #Parity=none
       
    34 #Parity=even
       
    35 #Parity=odd
       
    36 #Parity=mark
       
    37 #Parity=space
       
    38 
       
    39 
       
    40 # The DataBits parameter configures how many data bits to use
       
    41 # Possible values: 5, 6, 7, 8
       
    42 # Default value: 8
       
    43 
       
    44 #DataBits=5
       
    45 #DataBits=6
       
    46 #DataBits=7
       
    47 #DataBits=8
       
    48 
       
    49 
       
    50 # The StopBits parameter configures how many stop bits to use
       
    51 # Possible values: 1, 2
       
    52 # Default value: 1
       
    53 
       
    54 #StopBits=1
       
    55 #StopBits=2
       
    56 
       
    57 # The SendDelay parameter can be used to slow down the data sending from
       
    58 # Symbian to PC. It defines a delay in milliseconds between each write to
       
    59 # the serial port. This delay may be needed in some environments when
       
    60 # larger amounts of data is transferred. If data transfer seems to fail,
       
    61 # try increasing the SendDelay value.
       
    62 # The value is defined in milliseconds.
       
    63 # Default value: 0
       
    64 
       
    65 #SendDelay=0
       
    66 
       
    67 
       
    68 # The handshake parameter configures handshaking control bitmask in decimal format
       
    69 # Possible values:
       
    70 #
       
    71 # From d32comm.h :
       
    72 # DTE
       
    73 # ---
       
    74 # KConfigObeyCTS      0x4 = 4
       
    75 # KConfigObeyDSR     0x10 = 16
       
    76 # KConfigObeyDCD     0x40 = 64
       
    77 #
       
    78 # KConfigFailCTS      0x8 = 8
       
    79 # KConfigFailDCD     0x80 = 128
       
    80 # KConfigFailDSR     0x20 = 32
       
    81 #
       
    82 # KConfigFreeRTS    0x100 = 256
       
    83 # KConfigFreeDTR    0x200 = 512
       
    84 #
       
    85 # DCE
       
    86 # ---
       
    87 # KConfigObeyDTR    0x400 = 1024
       
    88 # KConfigObeyRTS   0x1000 = 4096
       
    89 #
       
    90 # KConfigFailDTR    0x800 = 2048
       
    91 # KConfigFailRTS   0x2000 = 8192
       
    92 #
       
    93 # KConfigFreeDSR   0x4000 = 16384
       
    94 # KConfigFreeCTS   0x8000 = 32768
       
    95 # KConfigFreeDCD  0x10000 = 65536
       
    96 # KConfigFreeRI   0x20000 = 131072
       
    97 #
       
    98 # DCD = Data Carrier Detect
       
    99 # DTR = Data Terminal Ready
       
   100 # DSR = Data Set Ready
       
   101 # RTS = Request To Send
       
   102 # CTS = Clear To Send
       
   103 #
       
   104 # For more information about the meaning of the values see Developer Library
       
   105 #
       
   106 # Default value: 0
       
   107 
       
   108 # For cables with partial handshaking
       
   109 #
       
   110 # KConfigObeyDSR | KConfigObeyDCD = 0x50
       
   111 #Handshake=80
       
   112 # KConfigObeyDSR | KConfigObeyDCD | KConfigObeyDTR = 0x450
       
   113 #Handshake=1104
       
   114 # KConfigObeyDSR | KConfigObeyDCD | KConfigFreeDSR | KConfigFreeDCD = 0x14050
       
   115 #Handshake=82000
       
   116 # KConfigObeyDSR | KConfigObeyDCD | KConfigFreeDTR | KConfigObeyDTR | KConfigFreeDSR | KConfigFreeDCD = 0x14650
       
   117 #Handshake=83536
       
   118 # KConfigObeyCTS | KConfigObeyDSR | KConfigObeyDCD = 0x54
       
   119 #Handshake=84
       
   120 
       
   121 # For cables with full handshaking
       
   122 #
       
   123 # KConfigObeyCTS | KConfigFreeRTS| KConfigObeyRTS | KConfigFreeCTS
       
   124 #Handshake=37124
       
   125