adds debug info for ethernet information and fixes issue incrementing joins correctly

This commit is contained in:
Andrew Welker
2020-03-25 15:40:29 -06:00
parent 534110cfbf
commit 475be152a7
3 changed files with 29 additions and 1 deletions

View File

@@ -187,7 +187,7 @@ namespace PepperDash.Essentials.Bridges
ProgramEnvironmentVersion = 4;
AggregatedProgramInfo = 5;
EthernetStartJoin = 60;
EthernetStartJoin = 75;
EthernetOffsetJoin = 15;

View File

@@ -59,6 +59,8 @@ namespace PepperDash.Essentials.Bridges
fb.Value.DomainFeedback.LinkInputSig(trilist.StringInput[ethernetSlotJoinStart + joinMap.Domain]);
fb.Value.DnsServerFeedback.LinkInputSig(trilist.StringInput[ethernetSlotJoinStart + joinMap.DnsServer]);
fb.Value.DhcpStatusFeedback.LinkInputSig(trilist.StringInput[ethernetSlotJoinStart + joinMap.DhcpStatus]);
ethernetSlotJoinStart += joinMap.EthernetOffsetJoin;
}
}