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"/>
|
<HasResources Value="True"/>
|
||||||
<ResourceBaseClass Value="Form"/>
|
<ResourceBaseClass Value="Form"/>
|
||||||
<UnitName Value="TransportXcpRs232Dialog"/>
|
<UnitName Value="TransportXcpRs232Dialog"/>
|
||||||
<IsVisibleTab Value="True"/>
|
|
||||||
<EditorIndex Value="2"/>
|
<EditorIndex Value="2"/>
|
||||||
<TopLine Value="14"/>
|
<TopLine Value="14"/>
|
||||||
<CursorPos X="47" Y="34"/>
|
<CursorPos X="101" Y="20"/>
|
||||||
<UsageCount Value="62"/>
|
<UsageCount Value="62"/>
|
||||||
<Loaded Value="True"/>
|
<Loaded Value="True"/>
|
||||||
<LoadedDesigner Value="True"/>
|
<LoadedDesigner Value="True"/>
|
||||||
|
@ -110,9 +109,10 @@
|
||||||
<HasResources Value="True"/>
|
<HasResources Value="True"/>
|
||||||
<ResourceBaseClass Value="Form"/>
|
<ResourceBaseClass Value="Form"/>
|
||||||
<UnitName Value="TransportXcpCanDialog"/>
|
<UnitName Value="TransportXcpCanDialog"/>
|
||||||
|
<IsVisibleTab Value="True"/>
|
||||||
<EditorIndex Value="1"/>
|
<EditorIndex Value="1"/>
|
||||||
<TopLine Value="212"/>
|
<TopLine Value="212"/>
|
||||||
<CursorPos X="75" Y="239"/>
|
<CursorPos Y="245"/>
|
||||||
<UsageCount Value="62"/>
|
<UsageCount Value="62"/>
|
||||||
<Loaded Value="True"/>
|
<Loaded Value="True"/>
|
||||||
</Unit9>
|
</Unit9>
|
||||||
|
|
|
@ -238,12 +238,12 @@ begin
|
||||||
else
|
else
|
||||||
CmbBaudrate.ItemIndex := 2;
|
CmbBaudrate.ItemIndex := 2;
|
||||||
end;
|
end;
|
||||||
EdtTransmitId.Text := Format('%.x', [FTransportXcpCanConfig.TransmitId]);
|
|
||||||
EdtReceiveId.Text := Format('%.x', [FTransportXcpCanConfig.ReceiveId]);
|
|
||||||
if FTransportXcpCanConfig.ExtendedId = 0 then
|
if FTransportXcpCanConfig.ExtendedId = 0 then
|
||||||
CbxExtended.Checked := False
|
CbxExtended.Checked := False
|
||||||
else
|
else
|
||||||
CbxExtended.Checked := True;
|
CbxExtended.Checked := True;
|
||||||
|
EdtTransmitId.Text := Format('%.x', [FTransportXcpCanConfig.TransmitId]);
|
||||||
|
EdtReceiveId.Text := Format('%.x', [FTransportXcpCanConfig.ReceiveId]);
|
||||||
end; //*** end of LoadConfig ***
|
end; //*** end of LoadConfig ***
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue