Merge branch 'main' into mc-messenger-improvements

This commit is contained in:
Andrew Welker
2025-09-29 11:02:39 -05:00
11 changed files with 279 additions and 328 deletions

View File

@@ -203,10 +203,18 @@ namespace PepperDash.Essentials.Touchpanel
this.csSubnetMask = IPAddress.Parse(csSubnetMask);
this.csIpAddress = IPAddress.Parse(csIpAddress);
}
catch
catch (ArgumentException)
{
Debug.LogInformation("This processor does not have a CS LAN", this);
}
catch (InvalidOperationException)
{
Debug.LogInformation("This processor does not have a CS LAN", this);
}
catch (Exception ex)
{
Debug.LogError($"Unexpected exception when checking CS LAN: {ex}", this);
}
}
/// <summary>