mirror of https://github.com/rusefi/openblt.git
Refs #955. Corrected 29-bit CAN identifier configuration in MicroBoot.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@727 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
7477875190
commit
fd66f0daed
Binary file not shown.
|
@ -95,10 +95,9 @@
|
|||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="TransportXcpRs232Dialog"/>
|
||||
<IsVisibleTab Value="True"/>
|
||||
<EditorIndex Value="2"/>
|
||||
<TopLine Value="14"/>
|
||||
<CursorPos X="47" Y="34"/>
|
||||
<CursorPos X="101" Y="20"/>
|
||||
<UsageCount Value="62"/>
|
||||
<Loaded Value="True"/>
|
||||
<LoadedDesigner Value="True"/>
|
||||
|
@ -110,9 +109,10 @@
|
|||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="TransportXcpCanDialog"/>
|
||||
<IsVisibleTab Value="True"/>
|
||||
<EditorIndex Value="1"/>
|
||||
<TopLine Value="212"/>
|
||||
<CursorPos X="75" Y="239"/>
|
||||
<CursorPos Y="245"/>
|
||||
<UsageCount Value="62"/>
|
||||
<Loaded Value="True"/>
|
||||
</Unit9>
|
||||
|
|
|
@ -238,12 +238,12 @@ begin
|
|||
else
|
||||
CmbBaudrate.ItemIndex := 2;
|
||||
end;
|
||||
EdtTransmitId.Text := Format('%.x', [FTransportXcpCanConfig.TransmitId]);
|
||||
EdtReceiveId.Text := Format('%.x', [FTransportXcpCanConfig.ReceiveId]);
|
||||
if FTransportXcpCanConfig.ExtendedId = 0 then
|
||||
CbxExtended.Checked := False
|
||||
else
|
||||
CbxExtended.Checked := True;
|
||||
EdtTransmitId.Text := Format('%.x', [FTransportXcpCanConfig.TransmitId]);
|
||||
EdtReceiveId.Text := Format('%.x', [FTransportXcpCanConfig.ReceiveId]);
|
||||
end; //*** end of LoadConfig ***
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue