Changeset 412 for PinConnection/UCommTelnetComPortOption.pas
- Timestamp:
- Aug 16, 2012, 10:46:01 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/UCommTelnetComPortOption.pas
r411 r412 88 88 begin 89 89 inherited; 90 //SetBaudRate(FBaudRate); 91 //SetDTR(FDTR); 92 //SetRTS(FRTS); 90 if AValue then begin 91 SetBaudRate(FBaudRate); 92 SetDTR(FDTR); 93 SetRTS(FRTS); 94 end; 93 95 end; 94 96 … … 101 103 try 102 104 Request := TBinarySerializer.Create; 105 Request.Endianness := enBig; 103 106 Request.List := TListByte.Create; 104 107 Request.OwnsList := True; … … 121 124 Request.List := TListByte.Create; 122 125 Request.OwnsList := True; 126 Request.Endianness := enBig; 123 127 Response := TBinarySerializer.Create; 124 128 Response.List := TListByte.Create; 125 129 Response.OwnsList := True; 130 Response.Endianness := enBig; 126 131 Request.WriteByte(Byte(cpcSetBaudRate)); 127 132 Request.WriteCardinal(0);
Note:
See TracChangeset
for help on using the changeset viewer.