Ignore:
Timestamp:
Aug 16, 2012, 10:46:01 AM (12 years ago)
Author:
chronos
Message:
  • Fixed: Telnet Com Port option now working without telnet option negotiation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • PinConnection/UCommTelnetComPortOption.pas

    r411 r412  
    8888begin
    8989  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;
    9395end;
    9496
     
    101103  try
    102104    Request := TBinarySerializer.Create;
     105    Request.Endianness := enBig;
    103106    Request.List := TListByte.Create;
    104107    Request.OwnsList := True;
     
    121124    Request.List := TListByte.Create;
    122125    Request.OwnsList := True;
     126    Request.Endianness := enBig;
    123127    Response := TBinarySerializer.Create;
    124128    Response.List := TListByte.Create;
    125129    Response.OwnsList := True;
     130    Response.Endianness := enBig;
    126131    Request.WriteByte(Byte(cpcSetBaudRate));
    127132    Request.WriteCardinal(0);
Note: See TracChangeset for help on using the changeset viewer.